aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/event/cancelbubble/index.html
blob: d84d4729037e93de54c3f177526c80dca9b07ace (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
---
title: Event.cancelBubble
slug: Web/API/Event/cancelBubble
translation_of: Web/API/Event/cancelBubble
---
<p>{{APIRef("DOM Events")}}</p>

<p>The <code><strong>Event.cancelBubble</strong></code> property は過去の経緯上、{{domxref("Event.stopPropagation()")}}の別名です。トリガーとしたevent handlerから終了する前に、これに<code>true</code>に設定すると、発生イベントを親要素に伝播(propagation)させません。</p>

<h2 id="Syntax" name="Syntax">文法</h2>

<pre class="syntaxbox">event.cancelBubble = <em>bool;</em>
<em>var bool</em> = event.cancelBubble;</pre>

<h2 id="使用例">使用例</h2>

<pre>elem.onclick = function(e) {
 // do cool things here
  e.cancelBubble = true;
}</pre>

<h2 id="詳細情報">詳細情報</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">詳細</th>
   <th scope="col">ステータス</th>
   <th scope="col">備考</th>
  </tr>
  <tr>
   <td>{{SpecName('DOM WHATWG', '#dom-event-cancelbubble', 'cancellBubble')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザ_互換性">ブラウザ 互換性</h2>

<p>{{Compat("api.Event.cancelBubble")}}</p>