无涯教程-jQuery - off()方法函数

123 阅读1分钟

off(events [,selector] [,handler(eventObject)])方法的作用与 on()方法相反,它删除了绑定的实时事件。

off( events [, selector ] [, handler(eventObject) ] ) - 语法

selector.on( event, selector, handler ) 

这是此方法使用的所有参数的描述-

  • event     -  用空格分隔的事件类型。

  • selector  -  selector字符串

  • handler  -  绑定到每个匹配元素集上的事件的函数

off( events [, selector ] [, handler(eventObject) ] ) - 示例

以下是一个简单的示例,简单说明了此方法的用法。

<html>
   <head>
      <title>The jQuery Example</title>
      <script type="text/javascript" 
         src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
		
      <script type="text/javascript" language="javascript">
         $(document).ready(function() {

            function aClick() {
               $("div").show().fadeOut("slow");
            }
				
            $("#bind").click(function () {
               $("#theone").on("click", aClick).text("Can Click!");
            });
				
            $("#unbind").click(function () {
               $("#theone").off("click", aClick).text("Does nothing...");
            });
				
         });
      </script>
		
      <style>
         button { margin:5px; }
         button#theone { color:red; background:yellow; }
      </style>
   </head>
	
   <body>
	
      <button id="theone">Does nothing...</button>
      <button id="bind">Bind Click</button>
      <button id="unbind">Unbind Click</button>
		
      <div style="display:none;">Click!</div>
   </body>
</html>

这将产生以下输出-

参考链接

www.learnfk.com/jquery/even…