码迷,mamicode.com
首页 > Web开发 > 详细

js 阻止冒泡事件和默认事件

时间:2019-03-13 12:31:04      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:event   window   opp   ret   div   return   lte   事件   val   

阻止事件冒泡   window.enent ? window.enent.cancelBubble = true : e.stopPropagation()

function stopBubble(event){
if(window.event){//兼容IE
window.event.cancelBubble=true;
}else{
event.stopPropagation();
}

 

阻止默认事件  window.event? window.event.returnValue=false : event.preventDefault(): return false
function stopDefaultEvent(event){ if(window.event){//兼容IE window.event.returnValue=false; }else{ event.preventDefault() } return false; }

 

js 阻止冒泡事件和默认事件

标签:event   window   opp   ret   div   return   lte   事件   val   

原文地址:https://www.cnblogs.com/yxdlm/p/10522199.html

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