blob: 6560fbe80347c8852ec2716c5f19709cc7e46dd9 (
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
|
---
title: HTMLSlotElement.assignedNodes()
slug: Web/API/HTMLSlotElement/assignedNodes
tags:
- API
- HTMLSlotElement
- Method
- Reference
- assignedNodes
- shadow dom
- メソッド
translation_of: Web/API/HTMLSlotElement/assignedNodes
---
<div>{{APIRef("Shadow DOM API")}}</div>
<p><strong><code>assignedNodes()</code></strong> は {{domxref("HTMLSlotElement")}} インターフェイスのプロパティで、このスロットに割り当てられた一連のノードを返し、 <code>flatten</code> オプションが <code>true</code> に設定されていた場合は、このスロットの子孫である他のスロットに割り当てられたノードも返します。割り当てられたノードが見つからない場合は、スロットの代替コンテンツを返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var assignedNodes = HTMLSlotElement.assignedNodes(<var>options</var>)</pre>
<h3 id="Parameters" name="Parameters">引数</h3>
<dl>
<dt><var>options</var> {{optional_inline}}</dt>
<dd>返されるノードのためのオプションを設定したオブジェクトです。利用可能な値は以下のとおりです。
<ul>
<li><code>flatten</code>: {{jsxref('Boolean')}} 値で、利用可能な子の <code><slot></code> 要素すべてに割り当てられたノードを返すか (<code>true</code>)、返さないか (<code>false</code>) を示します。既定値は <code>false</code> です。</li>
</ul>
</dd>
</dl>
<h3 id="Return_value" name="Return_value">返値</h3>
<p>ノードの配列。</p>
<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>ここではすべてのスロットの参照を取得し、テンプレート内の2番目のスロットに slotchange イベントリスナーを追加します。 — これが例の中でコンテンツの変更を追跡します。</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('HTML WHATWG','scripting.html#dom-slot-assignednodes','assignedNodes')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("api.HTMLSlotElement.assignedNodes")}}</p>
|