Closed ReinerLau1 closed 2 years ago
.stop
event.stopPropagation
.prevent
event.preventDefault
.capture
.self
.once
.stop
:等同于event.stopPropagation
,防止事件冒泡.prevent
:等同于event.preventDefault
,防止执行预设的行为.capture
:于事件冒泡的方向相反,事件捕获由外到内.self
:只会触发自己范围内的事件,不包含子元素.once
:只会触发一次