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>
这将产生以下输出-文章来源:https://www.toymoban.com/news/detail-607009.html
参考链接
https://www.learnfk.com/jquery/events-off.html文章来源地址https://www.toymoban.com/news/detail-607009.html
到了这里,关于无涯教程-jQuery - off()方法函数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!