下面小編就為大家?guī)?lái)一篇深入理解jQuery之防止冒泡事件。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。
冒泡事件就是點(diǎn)擊子節(jié)點(diǎn),會(huì)向上觸發(fā)父節(jié)點(diǎn),祖先節(jié)點(diǎn)的點(diǎn)擊事件。
下面是html代碼部分:
<body>
<div id="content">
外層div元素
<span>內(nèi)層span元素</span>
外層div元素
</div>
<div id="msg"></div>
</body>
對(duì)應(yīng)的jQuery代碼如下:
<script type="text/javascript">
$(function(){
// 為span元素綁定click事件
$('span').bind("click",function(){
var txt = $('#msg').html() + "<p>內(nèi)層span元素被點(diǎn)擊.<p/>";//獲取html信息
$('#msg').html(txt);// 設(shè)置html信息
});
// 為div元素綁定click事件
$('#content').bind("click",function(){
var txt = $('#msg').html() + "<p>外層div元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
});
// 為body元素綁定click事件
$("body").bind("click",function(){
var txt = $('#msg').html() + "<p>body元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
});
})
</script>
當(dāng)點(diǎn)擊span時(shí),會(huì)觸發(fā)div與body 的點(diǎn)擊事件。點(diǎn)擊div時(shí)會(huì)觸發(fā)body的點(diǎn)擊事件。
如何防止這種冒泡事件發(fā)生呢?
修改如下:
<script type="text/javascript">
$(function(){
// 為span元素綁定click事件
$('span').bind("click",function(event){
var txt = $('#msg').html() + "<p>內(nèi)層span元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
event.stopPropagation(); // 阻止事件冒泡
});
// 為div元素綁定click事件
$('#content').bind("click",function(event){
var txt = $('#msg').html() + "<p>外層div元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
event.stopPropagation(); // 阻止事件冒泡
});
// 為body元素綁定click事件
$("body").bind("click",function(){
var txt = $('#msg').html() + "<p>body元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
});
})
</script>
event.stopPropagation(); // 阻止事件冒泡
有時(shí)候點(diǎn)擊提交按鈕會(huì)有一些默認(rèn)事件。比如跳轉(zhuǎn)到別的界面。但是如果沒(méi)有通過(guò)驗(yàn)證的話,就不應(yīng)該跳轉(zhuǎn)。這時(shí)候可以通過(guò)設(shè)置event.preventDefault(); //阻止默認(rèn)行為 ( 表單提交 )。
下面是案例:
<script type="text/javascript">
$(function(){
$("#sub").bind("click",function(event){
var username = $("#username").val(); //獲取元素的值,val() 方法返回或設(shè)置被選元素的值。
if(username==""){ //判斷值是否為空
$("#msg").html("<p>文本框的值不能為空.</p>"); //提示信息
event.preventDefault(); //阻止默認(rèn)行為 ( 表單提交 )
}
})
})
</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>
還有一種防止默認(rèn)行為的方法就是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>
同理,上面的冒泡事件也可以通過(guò)return false來(lái)處理。
<script type="text/javascript">
$(function(){
// 為span元素綁定click事件
$('span').bind("click",function(event){
var txt = $('#msg').html() + "<p>內(nèi)層span元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
return false;
});
// 為div元素綁定click事件
$('#content').bind("click",function(event){
var txt = $('#msg').html() + "<p>外層div元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
return false;
});
// 為body元素綁定click事件
$("body").bind("click",function(){
var txt = $('#msg').html() + "<p>body元素被點(diǎn)擊.<p/>";
$('#msg').html(txt);
});
})
</script>
以上這篇深入理解jQuery之防止冒泡事件就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考