Event
介面的 stopPropagation()
方法可阻止當前事件繼續進行捕捉(capturing)及冒泡(bubbling)階段的傳遞。
語法
event.stopPropagation();
範例
請參考範例五:事件傳遞章節中關於此方法與 DOM 事件傳遞的更詳細範例。
規範
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Event.stopPropagation()' in that specification. |
Living Standard | |
DOM4 The definition of 'Event.stopPropagation()' in that specification. |
Obsolete | |
Document Object Model (DOM) Level 2 Events Specification The definition of 'Event.stopPropagation()' in that specification. |
Obsolete | Initial definition |
瀏覽器相容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
參見
- See the DOM specification for the explanation of event flow. (The DOM Level 3 Events draft has an illustration.)
Event.preventDefault()
is a related method that prevents the default action of the event from happening.