为什么直接用之前的.click()方法不行?
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>bind()方法绑定事件</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
</head>
<body>
<h3>bind()方法绑多个事件</h3>
<input id="btntest" type="button" value="点击就不可用了" />
<script type="text/javascript">
$(function(){
$("#btntest").click(function(){
$(this).attr("disable",true);
});
});
</script>
</body>
</html>