jQuery阻止事件冒泡

冒泡事件就是點擊子節點,會向上觸發父節點,祖先節點的點擊事件。javascript

下面是html代碼部分:html

 
<body>
<div id="content">
    外層div元素
    <span>內層span元素</span>
    外層div元素
</div>

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

對應的jQuery代碼以下:java

 
<script type="text/javascript">
$(function(){
    // 爲span元素綁定click事件
    $('span').bind("click",function(){
        var txt = $('#msg').html() + "<p>內層span元素被點擊.<p/>";//獲取html信息
        $('#msg').html(txt);// 設置html信息
    });
    // 爲div元素綁定click事件
    $('#content').bind("click",function(){
        var txt = $('#msg').html() + "<p>外層div元素被點擊.<p/>";
        $('#msg').html(txt);
    });
    // 爲body元素綁定click事件
    $("body").bind("click",function(){
        var txt = $('#msg').html() + "<p>body元素被點擊.<p/>";
        $('#msg').html(txt);
    });
})
</script>
 

當點擊span時,會觸發div與body 的點擊事件。點擊div時會觸發body的點擊事件。post

如何防止這種冒泡事件發生呢?spa

修改以下:code

 
<script type="text/javascript">
$(function(){
       // 爲span元素綁定click事件
    $('span').bind("click",function(event){
        var txt = $('#msg').html() + "<p>內層span元素被點擊.<p/>";
        $('#msg').html(txt);
        event.stopPropagation();    //  阻止事件冒泡
    });
    // 爲div元素綁定click事件
    $('#content').bind("click",function(event){
        var txt = $('#msg').html() + "<p>外層div元素被點擊.<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(); // 阻止事件冒泡orm

 

有時候點擊提交按鈕會有一些默認事件。好比跳轉到別的界面。可是若是沒有經過驗證的話,就不該該跳轉。這時候能夠經過設置event.preventDefault(); //阻止默認行爲 ( 表單提交 )。htm

下面是案例:blog

 
<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>

<div id="msg"></div>
</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;
    });
    // 爲div元素綁定click事件
    $('#content').bind("click",function(event){
        var txt = $('#msg').html() + "<p>外層div元素被點擊.<p/>";
        $('#msg').html(txt);
        return false;
    });
    // 爲body元素綁定click事件
    $("body").bind("click",function(){
        var txt = $('#msg').html() + "<p>body元素被點擊.<p/>";
        $('#msg').html(txt);
    });
})
</script>
相關文章
相關標籤/搜索