jQuery如何防止这种冒泡事件发生

2020-05-22 21:58:11易采站长站整理

冒泡事件就是点击子节点,事件会向上传递,最后触发父节点,祖先节点的点击事件。

html代码部分:


<body>
    <div id=”content”>
        外层div元素
        <span>内层span元素</span>
        外层div元素
    </div>
    <div id=”msg”></div>
</body>

jQuery代码如下:


<script type=”text/javascript”>
$(function(){
    $(‘span’).bind(“click”,function(){
        var txt = $(‘#msg’).html() + “<p>内层span元素被点<p/>”;
        $(‘#msg’).html(txt);
    });
    $(‘#content’).bind(“click”,function(){
        var txt = $(‘#msg’).html() + “<p>外层div元素被点击<p/>”;
        $(‘#msg’).html(txt);
    });
    $(“body”).bind(“click”,function(){
        var txt = $(‘#msg’).html() + “<p>body元素被点击<p/>”;
        $(‘#msg’).html(txt);
    });
})
</script>

当点击span时,会触发div与body 的点击事件。点击div时会触发body的点击事件。

如何防止这种冒泡事件发生呢?修改如下:


<script type=”text/javascript”>
$(function(){
    $(‘span’).bind(“click”,function(event){
        var txt = $(‘#msg’).html() + “<p>内层span元素被点击<p/>”;
        $(‘#msg’).html(txt);
        event.stopPropagation();    // 阻止事件冒泡
    });
    $(‘#content’).bind(“click”,function(event){
        var txt = $(‘#msg’).html() + “<p>外层div元素被点击<p/>”;
        $(‘#msg’).html(txt);
        event.stopPropagation();    // 阻止事件冒泡
    });
    $(“body”).bind(“click”,function(){
        var txt = $(‘#msg’).html() + “<p>body元素被点击<p/>”;