jQuery event.isImmediatePropagationStopped() 方法

  • 定义和用法

    event.isImmediatePropagationStopped() 方法检查指定的事件上是否调用了 event.stopImmediatePropagation() 方法。
    如果 event.stopImmediatePropagation() 被调用则该方法返回 true,否则返回 false
  • 语法

    event.isImmediatePropagationStopped()
  • 参数

    参数 描述
    event 必需。event 参数来自事件绑定函数。
  • 示例

    下例演示了检查 event.stopImmediatePropagation() 是否被调用:
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>欢迎来到蝴蝶教程</title>
        //此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
        <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/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:100px;border:1px solid red;">点击这个 div 元素。</div>
    </body>
    </html>
    
    尝试一下