compatible.js 290 B

123456789101112131415
  1. /**
  2. * 做兼容相关的函数集文件
  3. */
  4. /**
  5. * 阻止事件冒泡
  6. */
  7. export const _stopPropagation = (e) => {
  8. // window.event ? window.event.cancelBubble = true : e.stopPropagation();
  9. if(window&&window.event){
  10. window.event.cancelBubble = true
  11. }else{
  12. e.stopPropagation();
  13. }
  14. }