阻止默认事件和冒泡

阻止默认事件:
e.preventDefault()
e.returnValue = false  (IE)  // 对IE有用
阻止冒泡:
e.stopPropagation()
e.cancelBubble = true (IE) // 对IE有用
原文地址:https://www.cnblogs.com/yanghai/p/14107201.html