JavaScript 兼容各大浏览器阻止冒泡事件
Posted 冯叶青
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 兼容各大浏览器阻止冒泡事件相关的知识,希望对你有一定的参考价值。
javascript 兼容各大浏览器阻止冒泡事件
function stopEvent(event) { //阻止冒泡事件 //取消事件冒泡 var e = arguments.callee.caller.arguments[0] || event; //若省略此句,下面的e改为event,IE运行可以,但是其他浏览器就不兼容 if (e && e.stopPropagation) { // this code is for Mozilla and Opera e.stopPropagation(); } else if (window.event) { // this code is for IE window.event.cancelBubble = true; } }
以上是关于JavaScript 兼容各大浏览器阻止冒泡事件的主要内容,如果未能解决你的问题,请参考以下文章