如何取消绑定某个命名空间的全部 jQuery 事件?


要取消绑定某个命名空间的 jQuery 事件,请使用 unbind() 方法。event.namespace 属性用于返回事件触发时的自定义命名空间。

示例

可以尝试运行以下代码,了解事件命名空间的工作方式以及如何取消绑定命名空间的 jQuery 事件 −

在线演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("p").on("custom.myNamespace",function(event){
        alert(event.namespace);
    });
    $("p").click(function(event){
        $(this).trigger("custom.myNamespace");
    });  
    $("button").click(function(){
        $("p").off("custom.myNamespace");
    });
});  
</script>
</head>
<body>

<p>Click me</p>

<button>Click the button to remove namespace.</button>
<p>Clicking the above button removes the namespace.</p>

</body>
</html>

更新于: 2020 年2月17日

160 人浏览

开启您的 职业生涯

完成课程即可获得认证

开始学习
广告