目标功能:当鼠标移上去button可用 移开不可用,为什么就是不行??
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(function () {
$('button').hover(
function () {
$(this).removeAttr("disabled");
},
function () {
$(this).attr("disabled","true")
})
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<button>请点击这里</button>
</body>
</html>
目标功能:当鼠标移上去button可用 移开不可用,
为什么就是不行??