为什么这不起作用?我该如何修理呢?
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("button").unbind("click");
$("div").show().fadeOut("slow",function(){
$("button").bind("click");
});
})
})
</script>
<style>
div{width:600px;height:600px;display:none;background:red;}
</style>
</head>
<body>
<button>test</button>
<div></div>
</body>
</html>
答案 0 :(得分:5)
您没有指定将click
事件绑定到$("button").bind("click");
的(它没有做出任何假设,它只是默默地绑定任何内容)。您可以使用您存储的命名函数执行此操作,例如:
$(document).ready(function() {
function clickHandler() {
$("button").unbind("click");
$("div").show().fadeOut("slow",function() {
$("button").bind("click", clickHandler);
//or: $("button").click(clickHandler);
});
}
$("button").click(clickHandler);
});
You can test it out here。在你的情况下,更容易检查<div>
是否被隐藏,并且不会取消/重新绑定任何内容,如下所示:
$(function() {
$("button").click(function () {
$("div:hidden").show().fadeOut("slow");
});
});