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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
---
title: DOMTokenList.forEach()
slug: Web/API/DOMTokenList/forEach
tags:
- DOM
- DOMTokenList
- Iterable
- Method
- Reference
- Web
- forEach
translation_of: Web/API/DOMTokenList/forEach
---
<p>{{APIRef("DOM")}}</p>
<p><strong><code>forEach()</code></strong> は {{domxref("DOMTokenList")}} インターフェイスのメソッドで、リスト中のそれぞれの値の組に対して挿入順で 1 回ずつ、引数で渡されたコールバックを呼び出します。</p>
<h2 id="Syntax">構文</h2>
<pre class="brush: js"><var>tokenList</var>.forEach(<var>callback</var> [, <var>thisArg</var>]);
</pre>
<h3 id="Parameters">引数</h3>
<dl>
<dt><code><var>callback</var></code></dt>
<dd>それぞれの要素に対して呼び出す関数で、 3 つの引数を取ります。
<dl>
<dt><code><var>currentValue</var></code></dt>
<dd>配列内で処理中の現在の要素です。</dd>
<dt><code><var>currentIndex</var></code></dt>
<dd>配列内で処理中の現在の要素の位置です。</dd>
<dt><code><var>listObj</var></code></dt>
<dd><code>forEach()</code> を実行中の配列です。</dd>
</dl>
</dd>
<dt><code><var>thisArg</var></code> {{Optional_inline}}</dt>
<dd><code><var>callback</var></code> を実行する際に {{jsxref("Operators/this", "this")}} として使用する値です。
</dd>
</dl>
<h3 id="Return_value">返値</h3>
<p>{{jsxref('undefined')}}.</p>
<h2 id="Example">例</h2>
<p>次の例では、 {{htmlelement("span")}} 要素に設定されたクラスのリストを <code>DOMTokenList</code> として受け取るのに {{domxref("Element.classList")}} を使用しています。 <code>forEach()</code> を使用して値を含む反復子を取得し、それぞれの値を <code><span></code> の {{domxref("Node.textContent")}} に <code>forEach()</code> の中の関数から書き込みます。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><span class="a b c"></span></pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js">let span = document.querySelector("span");
let classes = span.classList;
let iterator = classes.values();
classes.forEach(
function(value, key, listObj) {
span.textContent += `${value} ${key}/${this} ++ `;
},
"arg"
);</pre>
<h3 id="Result">結果</h3>
<p>{{ EmbedLiveSample('Example', '100%', 60) }}</p>
<h2 id="Polyfill">ポリフィル</h2>
<p>この{{Glossary("Polyfill","ポリフィル")}}は、 <a href="https://caniuse.com/#search=es5">ES5</a> に対応しているすべてのブラウザーに互換性を追加します。</p>
<pre class="brush: js">if (window.DOMTokenList && !DOMTokenList.prototype.forEach) {
DOMTokenList.prototype.forEach = function (callback, thisArg) {
thisArg = thisArg || window;
for (var i = 0; i < this.length; i++) {
callback.call(thisArg, this[i], i, this);
}
};
}
</pre>
<h2 id="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','#domtokenlist','forEach() (as iterable<Node>)')}}
</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.DOMTokenList.forEach")}}</p>
<h2 id="See_also">関連情報</h2>
<ul>
<li>{{domxref("DOMSettableTokenList")}} (DOMTokenList を設定可能な <em>.value</em> プロパティで拡張したオブジェクト)</li>
</ul>
|