李维强-15级 发表于 2017-10-28 21:30:20

多层DIV的冒泡原理

http://javascript.info/bubbling-and-capturing
https://stackoverflow.com/questions/1357118/event-preventdefault-vs-return-false

中文解释
https://segmentfault.com/a/1190000003007361


//阻止事件冒泡函数
function stopBubble(e)
{
    if (e && e.stopPropagation)
      e.stopPropagation()
    else
      window.event.cancelBubble=true
}
页: [1]
查看完整版本: 多层DIV的冒泡原理