blob: f3afd9eaeeb059fc9ca2ce802394ad71f877c044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
---
title: Event.cancelBubble
slug: Web/API/Event/cancelBubble
tags:
- 事件
translation_of: Web/API/Event/cancelBubble
original_slug: Web/API/Event/禁用时间冒泡
---
<p>{{APIRef("DOM Events")}} </p>
<p><code><strong>Event.cancelBubble</strong></code> 属性是 {{domxref("Event.stopPropagation()")}}的一个曾用名。在从事件处理程序返回之前将其值设置为true可阻止事件的传播。</p>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox">event.cancelBubble = <em>bool;</em>
<em>let bool</em> = event.cancelBubble;</pre>
<h2 id="用例">用例</h2>
<dl>
<dt>
<pre class="syntaxbox">ele.onclick = function(e) {
// 在这儿可以做点儿有趣的事情
e.cancelBubble = true;
}</pre>
</dt>
</dl>
<h2 id="规范">规范</h2>
<p><em>这个属性的规范并未统一.</em> 因为他还有其他标准 W3C版: <a href="http://www.w3.org/TR/1999/WD-DOM-Level-2-19990304/events.html#attribute-cancelBubble">an old Working Draft of W3C DOM Level 2</a>. 微软版: <a href="https://msdn.microsoft.com/en-us/library/ms533545(v=vs.85).aspx">description of it on MSDN</a>.</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容</h2>
{{Compat("api.Event.cancelBubble")}}
<h2 id="参考">参考</h2>
<ul>
<li>{{domxref("UIEvent.cancelBubble")}}</li>
<li>translated by cnvoid</li>
</ul>
|