欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery阻止事件冒泡具体实现

程序员文章站 2022-06-26 09:54:21
下面是html代码部分:   . 代码如下:

    外层p元素...

下面是html代码部分:

 

. 代码如下:


<body>
<p id="content">
    外层p元素
    <span>内层span元素</span>
    外层p元素
</p>

 

<p id="msg"></p>
</body>

 

对应的jquery代码如下:

 

. 代码如下:


<script type="text/javascript">
$(function(){
    // 为span元素绑定click事件
    $('span').bind("click",function(){
        var txt = $('#msg').html() + "<p>内层span元素被点击.<p/>";//获取html信息
        $('#msg').html(txt);// 设置html信息
    });
    // 为p元素绑定click事件
    $('#content').bind("click",function(){
        var txt = $('#msg').html() + "<p>外层p元素被点击.<p/>";
        $('#msg').html(txt);
    });
    // 为body元素绑定click事件
    $("body").bind("click",function(){
        var txt = $('#msg').html() + "<p>body元素被点击.<p/>";
        $('#msg').html(txt);
    });
})
</script>

 

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

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

修改如下:

 

. 代码如下:


<script type="text/javascript">
$(function(){
       // 为span元素绑定click事件
    $('span').bind("click",function(event){
        var txt = $('#msg').html() + "<p>内层span元素被点击.<p/>";
        $('#msg').html(txt);
        event.stoppropagation();    //  阻止事件冒泡
    });
    // 为p元素绑定click事件
    $('#content').bind("click",function(event){
        var txt = $('#msg').html() + "<p>外层p元素被点击.<p/>";
        $('#msg').html(txt);
        event.stoppropagation();    //  阻止事件冒泡
    });
    // 为body元素绑定click事件
    $("body").bind("click",function(){
        var txt = $('#msg').html() + "<p>body元素被点击.<p/>";
        $('#msg').html(txt);
    });
})
</script>

 

event.stoppropagation(); // 阻止事件冒泡

有时候点击提交按钮会有一些默认事件。比如跳转到别的界面。但是如果没有通过验证的话,就不应该跳转。这时候可以通过设置event.preventdefault(); //阻止默认行为 ( 表单提交 )。

下面是案例:

 

. 代码如下:


<script type="text/javascript">
$(function(){
   $("#sub").bind("click",function(event){
         var username = $("#username").val();  //获取元素的值,val() 方法返回或设置被选元素的值。
         if(username==""){     //判断值是否为空
             $("#msg").html("<p>文本框的值不能为空.</p>");  //提示信息
             event.preventdefault();  //阻止默认行为 ( 表单提交 )
         }
   })
})
</script>

 

html部分:

 

. 代码如下:


<body>
<form action="test.html">
用户名:<input type="text" id="username" />
<br/>
<input type="submit" value="提交" id="sub"/>
</form>

 

<p id="msg"></p>
</body>

 

还有一种防止默认行为的方法就是return false。效果一样。

代码如下:

 

. 代码如下:


<script type="text/javascript">
$(function(){
   $("#sub").bind("click",function(event){
         var username = $("#username").val();  //获取元素的值
         if(username==""){     //判断值是否为空
             $("#msg").html("<p>文本框的值不能为空.</p>");  //提示信息
             return false;
         }
   })
})
</script>

 

同理,上面的冒泡事件也可以通过return false来处理。

 

. 代码如下:


<script type="text/javascript">
$(function(){
       // 为span元素绑定click事件
    $('span').bind("click",function(event){
        var txt = $('#msg').html() + "<p>内层span元素被点击.<p/>";
        $('#msg').html(txt);
        return false;
    });
    // 为p元素绑定click事件
    $('#content').bind("click",function(event){
        var txt = $('#msg').html() + "<p>外层p元素被点击.<p/>";
        $('#msg').html(txt);
        return false;
    });
    // 为body元素绑定click事件
    $("body").bind("click",function(){
        var txt = $('#msg').html() + "<p>body元素被点击.<p/>";
        $('#msg').html(txt);
    });
})
</script>