多层DIV的冒泡原理
http://javascript.info/bubbling-and-capturinghttps://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]