<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
$("#btntest").bind("click mouseout",function(){
$(this).attr("disabled","true");
})
$(this).attr("disabled","true");
})
2016-05-22
最赞回答 / 王大七
$(this)代表当前操作的对象,$this=$(this)把这个对象赋给$this这个变量,这个变量就是按钮#btnShow,所以使用$this按钮回失效,而$(this)只代表当前操作的对象,故在getScript的函数中代表的是getScript方法操作的对象,不再是按钮,所以按钮不会失效。
2016-05-21