在开发中,我们常常有这样的需求,当用户点击下图中的灰色区域和蓝色区域时触发不同的事件。不幸的是,绝大部分浏览器都开启了事件冒泡,这就直接导致当用户点击灰色区域后,蓝色区域的事件也会触发。所以我们需要通过调用event的cancelBubble或stopPropagation方法阻止冒泡事件。
直接上代码:
<html>
<head>
<script type='text/javascript'>
function call_father(){
confirm("父Div");
}
function call_child(e,flag){
confirm("子Div");
if(flag)
cancelBubble(e);
}
function cancelBubble(e)
{
if (e.stopPropagation) e.stopPropagation();
else e.cancelBubble = true;
}
</script>
<style>
#father {
background-color:blue;
border: 1px solid;
width: 300px;
height: 400px;
float:left;
margin:50px;
}
#child {
background-color:gray;
border: 1px solid white;
width: 150px;
height: 200px;
margin: 100px 75px;
}
</style>
</head>
<body>
<p>冒泡事件:</p>
<div id='father' οnclick='call_father();'>
<div id='child' οnclick='call_child(event,false);'>
</div>
</div>
<p>通过cancelBubble,stopPropagation方法阻止冒泡事件:</p>
<div id='father' οnclick='call_father();'>
<div id='child' οnclick='call_child(event,true);'>
</div>
</div>
</body>
</html>