• 阻止事件冒泡


    转自http://www.runoob.com/try/try.php?filename=tryjquery_event_stoppropagation

    <!DOCTYPE html>
    <html>
    <head>
    <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
    </script>
    <script>
    $(document).ready(function(){
    $("span").click(function(event){
    event.stopPropagation();
    alert("The span element was clicked.");
    });
    $("p").click(function(event){
    alert("The p element was clicked.");
    });
    $("div").click(function(){
    alert("The div element was clicked.");
    });
    });
    </script>
    </head>
    <body>

    <div style="height:100px;500px;padding:10px;border:1px solid blue;background-color:lightblue;">
    This is a div element.
    <p style="background-color:pink">This is a p element, in the div element. <br><span style="background-color:orange">This is a span element in the p and the div element.</span></p></div>

    <p><b>Note:</b> Click on each of the elements above. When clicking on the <b>div</b> element, it will alert that the div element was clicked. When clicking on the <b>p</b> element, it will return both the p and the div element, since the p element is inside the div element.
    But when clicking on the <b>span</b> element, it will only return itself, and not the p and the div element (even though its inside these elements). The event.stopPropagation() stops the click event from bubbling to the parent elements.
    </p>
    <p><b>Tip:</b> Try to remove the event.stopPropagation() line, and click on the span element again (the click event will now bubble up to parent elements).</p>

    </body>
    </html>

  • 相关阅读:
    angularJs之http后台访问数据
    angularJ之$filter过滤器
    angularJs之service
    下拉列表select显示ng-options
    angularJs非空校验requied
    angularJs禁用或启用输入框指令ng-disabled="true"
    angularJS支持的事件
    angularJ表单验证
    angularJs之template指令
    angularJs自定义指令.directive==类似自定义标签
  • 原文地址:https://www.cnblogs.com/ch-zaizai/p/6140095.html
Copyright © 2020-2023  润新知