aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-04-17 00:38:37 +0900
committerGitHub <noreply@github.com>2021-04-17 00:38:37 +0900
commit40cd01daeb2f6f7fff40ff2986208513afc8678e (patch)
treea7cef9d8d0fd452211736d879a7d46c9d654cb84 /files
parent0af01bcac12ad9f4888c9be8df2b19d05f5c6e7b (diff)
downloadtranslated-content-40cd01daeb2f6f7fff40ff2986208513afc8678e.tar.gz
translated-content-40cd01daeb2f6f7fff40ff2986208513afc8678e.tar.bz2
translated-content-40cd01daeb2f6f7fff40ff2986208513afc8678e.zip
DOMTokenList.keys() を新規翻訳 (#421)
* DOMTokenList.keys() を新規翻訳 2021/02/20 時点の英語版に基づき新規翻訳 * 表現とリンク先を若干修正
Diffstat (limited to 'files')
-rw-r--r--files/ja/web/api/domtokenlist/keys/index.html75
1 files changed, 75 insertions, 0 deletions
diff --git a/files/ja/web/api/domtokenlist/keys/index.html b/files/ja/web/api/domtokenlist/keys/index.html
new file mode 100644
index 0000000000..20d661ec82
--- /dev/null
+++ b/files/ja/web/api/domtokenlist/keys/index.html
@@ -0,0 +1,75 @@
+---
+title: DOMTokenList.keys()
+slug: Web/API/DOMTokenList/keys
+tags:
+- DOM
+- DOMTokenList
+- Iterable
+- Method
+- Reference
+- Web
+- keys
+translation_of: Web/API/DOMTokenList/keys
+---
+<p>{{APIRef("DOM")}}</p>
+
+<p><code><strong>keys()</strong></code> は {{domxref("DOMTokenList")}} インターフェイスのメソッドで、このオブジェクトに含まれるすべてのキーを処理することができる{{jsxref("Iteration_protocols","反復子","",1)}}を返します。キーの型は <code>unsigned integer</code> です。
+</p>
+
+<h2 id="Syntax">構文</h2>
+
+<pre class="brush: js">tokenList.keys();</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>keys()</code> を使用してキーを含む反復子を取得してから、 <a href="/ja/docs/Web/JavaScript/Reference/Statements/for...of">for ... of</a> ループを使用してそれぞれを反復処理し、それを <code>&lt;span&gt;</code> の {{domxref("Node.textContent")}} に書き込みます。</p>
+
+<p>最初に HTML です。</p>
+
+<pre class="brush: html">&lt;span class="a b c"&gt;&lt;/span&gt;</pre>
+
+<p>そして JavaScript です。</p>
+
+<pre class="brush: js">var span = document.querySelector("span");
+var classes = span.classList;
+var iterator = classes.keys();
+
+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','keys() (as iterable&lt;Node&gt;)')}}
+ </td>
+ <td>{{Spec2('DOM WHATWG')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p>{{Compat("api.DOMTokenList.keys")}}</p>