jQuery event.isImmediatePropagationStopped() 方法
实例
检查是否 event.stopImmediatePropagation() 被调用:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("div").click(function(event){
event.stopImmediatePropagation();
alert("event.stopImmediatePropagation() 被调用: " + event.isImmediatePropagationStopped());
});
});
</script>
</head>
<body>
<div style="height:100px;width:300px;padding:10px;border:1px solid blue;background-color:lightblue;">点击 div 元素</div>
</body>
</html>
定义与用法
这个方法检查 event.stopImmediatePropagation() 是否被事件调用。
如果 event.stopImmediatePropagation()
方法被调用,则返回 true,否则返回 false。
语法
event.isImmediatePropagationStopped()
参数 | 描述 |
---|---|
event | 必填。event 参数来自事件绑定函数 |