js 阻止冒泡事件和默认事件
Posted yxdlm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 阻止冒泡事件和默认事件相关的知识,希望对你有一定的参考价值。
阻止事件冒泡 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 阻止冒泡事件和默认事件的主要内容,如果未能解决你的问题,请参考以下文章