码迷,mamicode.com
首页 > 其他好文 > 详细

点击事件阻止缺省事件以及阻止冒泡

时间:2014-10-15 12:24:51      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   使用   sp   div   on   

 1 function stopEvent(e){
 2     stopDefault(e);
 3     stopBubble(e);
 4 }
 5 
//阻止缺省事件发生 6 function stopDefault(e){ 7 if(e.preventDefault){ 8 e.preventDefault(); 9 }else{ 10 e.returnValue=false; 11 } 12 } 13 //阻止冒泡发生 14 function stopBubble(e){ 15 if(e.stopPropagation){ 16 e.stopPropagation(); 17 }else{ 18 e.cancelBubble=true; 19 } 20 }

使用:
<div onclick="alert(‘div‘)" >
<a href="http://www.baidu.com" onclick="stopEvent(event)" >点我</a>
</div>

 

点击事件阻止缺省事件以及阻止冒泡

标签:style   blog   http   color   io   使用   sp   div   on   

原文地址:http://www.cnblogs.com/suyuji/p/4025726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!