unbind([type], [fn] )
优质
小牛编辑
131浏览
2023-12-01
描述 (Description)
unbind( [type], [fn] )方法与bind相反,它从每个匹配元素中删除绑定事件。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>selector</i>.unbind( [type], [fn] )
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
type - 由空格分隔的一个或多个事件类型。
fn - 在每组匹配元素上取消绑定事件的函数。
例子 (Example)
以下是一个简单的例子,简单地显示了这种方法的用法 -
<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>