事件对象
事件对象
event对象包含很多信息
event对象包含很多信息
事件对象
属性
type
target(
srcElement
IE)事件触发节点
currentTarget
父节点事件
|事件代理
方法
stopPropagation
阻止冒泡
preventDefault
阻止默认事件
stopImmediatePropagation
阻止冒泡
阻止事件传播
event.stopPropagation()
(W3C)阻止事件传播到父节点
event.cancelBubble=true
(IE)stopImmediatePropagation (W3C)
并且阻止当前节点的后续事件
阻止默认行为
event.preventDefault() (W3C)
阻止默认行为
Event.returnValue = false
(IE)
最后更新于