blob: 86af2bc769e49a42aff9cee0eeef7229cb99987f (
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: DOMTokenList.values()
slug: Web/API/DOMTokenList/values
tags:
- DOM
- DOMTokenList
- Iterable
- Method
- Reference
- Web
- values
translation_of: Web/API/DOMTokenList/values
---
<p>{{APIRef("DOM")}}</p>
<p><code><strong>values()</strong></code> は {{domxref("DOMTokenList")}} インターフェイスのメソッドで、開発者がこの <code>DOMTokenList</code> に含まれるすべての値を処理することができる{{jsxref("Iteration_protocols","反復子","",1)}}を返します。それぞれの値の型は {{domxref("DOMString")}} オブジェクトです。</p>
<h2 id="Syntax">構文</h2>
<pre class="brush: js">tokenList.values();</pre>
<h3 id="Parameters">引数</h3>
<p>なし</p>
<h3 id="Return_value">返値</h3>
<p>{{jsxref("Iteration_protocols","反復子","",1)}}を返します。</p>
<h2 id="Examples">例</h2>
<p>次の例では、 {{domxref("Element.classList")}} を使用して {{htmlelement("span")}} 要素に設定されたクラスのリストを <code>DOMTokenList</code> として受け取ります。 <code>values()</code> を使用して値を含む反復子を取得してから、 <a href="/ja/docs/Web/JavaScript/Reference/Statements/for...of">for ... of</a> ループを使用してそれぞれを反復処理し、それを <code><span></code> の {{domxref("Node.textContent")}} に書き込みます。</p>
<p>最初に HTML です。</p>
<pre class="brush: html"><span class="a b c"></span></pre>
<p>そして JavaScript です。</p>
<pre class="brush: js">var span = document.querySelector("span");
var classes = span.classList;
var iterator = classes.values();
for(var value of iterator) {
span.textContent += value + ' ++ ';
}</pre>
<p>出力結果は以下のようになります。</p>
<p>{{ EmbedLiveSample('Examples', '100%', 60) }}</p>
<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','values() (as iterable<Node>)')}}
</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.DOMTokenList.values")}}</p>
|