.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
<script type="text/javascript">
$("#a1").attr('href','www.imooc.com');
var $url = $("#a1").attr("href");
$("#tip").html($url);
</script>
$("#a1").attr('href','www.imooc.com');
var $url = $("#a1").attr("href");
$("#tip").html($url);
</script>
2016-05-22
$(function(){
$("div").hover(
function(){
$(this).addClass("orange");
}
function(){
$(this).removeClass("orange")
}
);
});
$("div").hover(
function(){
$(this).addClass("orange");
}
function(){
$(this).removeClass("orange")
}
);
});
2016-05-22