关于jquery绑定unbind

时间:2010-11-08 03:38:58

标签: jquery bind unbind

为什么这不起作用?我该如何修理呢?

<!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>

1 个答案:

答案 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");
  });
});

You can test that version here