js阻止事件冒泡及浏览器默认行为

  //阻止事件冒泡函数
  stopBubble(e) {
    if (e && e.stopPropagation)
      e.stopPropagation()
    else
      window.event.cancelBubble = true
  }
  // 阻止默认浏览器动作
  stopDefault(e) {
    if (e && e.preventDefault) {
      e.preventDefault();
    } else {
      window.event.returnValue = false;
    }
    return false;
  }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.duanlonglong.com/qdjy/222.html