.load("http://www.imooc.com/data/fruit_part.html",function()
2016-05-22
$(function () {
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
2016-05-22
$("#content").css({"background-color":"red","color":"white"});
2016-05-22
$("div").trigger("change-color");
2016-05-22
$(function () {
var intI = 0;
$("div").bind("click", function () {
intI++;
$(this).css("font-size", intI +"px");
if(intI==12){
intI=1;}
})
});无限狂点
var intI = 0;
$("div").bind("click", function () {
intI++;
$(this).css("font-size", intI +"px");
if(intI==12){
intI=1;}
})
});无限狂点
2016-05-22