Javascript中的冒泡事件

在开发中,我们常常有这样的需求,当用户点击下图中的灰色区域和蓝色区域时触发不同的事件。不幸的是,绝大部分浏览器都开启了事件冒泡,这就直接导致当用户点击灰色区域后,蓝色区域的事件也会触发。所以我们需要通过调用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>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值