blob: 295a4cd71537944271631248709548e3925bb363 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
---
title: 'HTMLSlotElement: slotchange イベント'
slug: Web/API/HTMLSlotElement/slotchange_event
tags:
- Event
- Reference
- Webコンポーネント
- events
- slotchange
- イベント
- ウェブコンポーネント
- 仮想DOM
translation_of: Web/API/HTMLSlotElement/slotchange_event
---
<div>{{APIRef}}</div>
<p><span class="seoSummary"><code><strong>slotchange</strong></code> イベントは、 {{DOMxRef("HTMLSlotElement")}} インスタンス({{HTMLElement("slot")}} 要素) において、そのスロットが含まれるノードが変更された場合に発生します。</span></p>
<div class="note">
<p><strong>メモ:</strong> スロットされたノードの子ノードが変更された場合、 <code>slotchange</code> イベントは発生しません。つまり実際のノード自体を変更 (例えば、追加または削除) した場合に限ります。</p>
</div>
<table class="properties">
<tbody>
<tr>
<th scope="row">バブリング</th>
<td>あり</td>
</tr>
<tr>
<th scope="row">キャンセル</th>
<td>不可</td>
</tr>
<tr>
<th scope="row">インターフェイス</th>
<td>{{DOMxRef("Event")}}</td>
</tr>
<tr>
<th scope="row">イベントハンドラープロパティ</th>
<td>なし</td>
</tr>
</tbody>
</table>
<h2 id="Examples" name="Examples">例</h2>
<p>次のスニペットは、 <a href="https://github.com/mdn/web-components-examples/tree/master/slotchange">slotchange の例</a>から取られています (<a href="https://mdn.github.io/web-components-examples/slotchange/">ライブも参照してください</a>)。</p>
<pre class="brush: js">let slots = this.shadowRoot.querySelectorAll('slot');
slots[1].addEventListener('slotchange', function(e) {
let nodes = slots[1].assignedNodes();
console.log('Element in Slot "' + slots[1].name + '" changed to "' + nodes[0].outerHTML + '".');
});</pre>
<p>ここではすべての <code><slot></code> への参照を取得し、テンプレートの2番目のスロットに <code>slotchange</code> イベントリスナーを追加します。この例ではコンテンツが変更されているスロットです。</p>
<p>スロットに挿入された要素が変更されるたびに、どのスロットが変更されたか、スロット内の新しいノードが何であるかを示すレポートがコンソールに記録されます。</p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("DOM WHATWG", "#mutation-observers", '"Mutation observers" and slotchange event')}}</td>
<td>{{Spec2("DOM WHATWG")}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.HTMLSlotElement.slotchange_event")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<p>{{domxref("HTMLSlotElement")}}</p>
|