非标
此特征是非标准的,且不在标准轨道中。不要在面向 Web 的生产站点中使用它:它不适用于每个用户。实现之间可能存在大的不兼容性,且行为将来可能改变。
弃用
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the
兼容性表格
at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
UIEvent.cancelBubble
property indicates if event bubbling for this event has been canceled or not. It is set to
false
by default, allowing the event to bubble up the DOM, if it is a bubbleable event. Setting this property to
true
stops the event from bubbling up the DOM. Not all events are allowed to bubble up the DOM.
使用
Event.stopPropagation()
instead of this non-standard method.
event.cancelBubble = bool; var bool = event.cancelBubble;
This property is not part of any specification.
Although the similar
Event.cancelBubble
property was included in
an old Working Draft of W3C DOM Level 2
. Microsoft has a
description of it on MSDN
.
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
cancelBubble
弃用
非标
|
Chrome Yes | Edge 12 | Firefox Yes | IE Yes | Opera Yes | Safari Yes | WebView Android Yes | Chrome Android Yes | Firefox Android Yes | Opera Android Yes | Safari iOS Yes | Samsung Internet Android Yes |
Implemented on
事件
|
Chrome ? | Edge ≤18 | Firefox 53 | IE ? | Opera ? | Safari ? | WebView Android ? | Chrome Android ? | Firefox Android 53 | Opera Android ? | Safari iOS ? | Samsung Internet Android ? |
完整支持
兼容性未知
非标。预期跨浏览器支持较差。
弃用。不要用于新网站。
UIEvent