阻止冒泡的兼容性写法

IE9以下报错:对象不支持“stopPropagation”属性或方法

 

if (event.stopPropagation) {   
  // 针对 Mozilla 和 Opera   
  event.stopPropagation();   
}   
else if (window.event) {   
  // 针对 IE   
  window.event.cancelBubble = true;   
}   

  

posted @ 2017-06-06 17:13  sueris  阅读(399)  评论(0编辑  收藏  举报