compatible.js 191 B

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