unbind([type],[fn])方法的作用与bind相反,它从每个匹配的元素中删除绑定事件。
unbind( [type], [fn] ) - 语法
selector.unbind( [type], [fn] )
这是此方法使用的所有参数的描述-
type - 一种或多种事件类型,以空格分隔。
fn - 取消与每个匹配元素上的事件绑定的函数。
unbind( [type], [fn] ) - 示例
以下是一个简单的示例,简单说明了此方法的用法-
<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").click(aClick).text("Can Click!"); }); $("#unbind").click(function () { $("#theone").unbind(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>
这将产生以下输出-
jQuery 中的 unbind()方法函数 - 无涯教程网无涯教程网提供unbind([type],[fn])方法的作用与bind相反,它从每个匹配的元素中删除绑定事件。 unb...https://www.learnfk.com/jquery/events-unbind.html