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

兼容firefox,ie,谷歌,阻止浏览器冒泡事件,Firefox不支持event解决方法

时间:2017-08-15 18:54:34      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:方法   ati   null   ref   prevent   top   type   tor   return   

兼容firefox,ie,谷歌,阻止浏览器冒泡事件,Firefox不支持event解决方法

 //        获取事件
function getEvent(){ if(window.event) {return window.event;} func=getEvent.caller;
while(func!=null){ var arg0=func.arguments[0];
if(arg0){ if((arg0.constructor==Event || arg0.constructor ==MouseEvent
|| arg0.constructor==KeyboardEvent) ||(typeof(arg0)=="object" && arg0.preventDefault
&& arg0.stopPropagation)){ return arg0;
} } func=func.caller;
} return null;
} //阻止冒泡
function cancelBubble() { var e=getEvent();
if(window.event){ //e.returnValue=false;//阻止自身行为
e.cancelBubble=true;//阻止冒泡
}else if(e.preventDefault){ //e.preventDefault();//阻止自身行为
e.stopPropagation();//阻止冒泡
} }

兼容firefox,ie,谷歌,阻止浏览器冒泡事件,Firefox不支持event解决方法

标签:方法   ati   null   ref   prevent   top   type   tor   return   

原文地址:http://www.cnblogs.com/lxf1117/p/7366756.html

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