为什么我再设置为mouseover事件,修改属性attr("disabled",false),鼠标移入的时候没有反应,false加上“”也没有效果。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>live()方法绑定事件</title>
<script src="http://libs.baidu.com/jquery/1.8.2/jquery.js" type="text/javascript"></script>
</head>
<body>
<h3>live()方法绑多个事件</h3>
<script type="text/javascript">
$(function () {
$("#btntest").live("click mouseout", function (){
$(this).attr("disabled", "true");
})
$("#btntest").bind("mouseover",function(){
$(this).attr("disabled",false);
})
$("body").append("<input id='btntest' type='button' value='点击或移出就不可用了' />");
});
</script>
</body>
</html>