From 40cd01daeb2f6f7fff40ff2986208513afc8678e Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 17 Apr 2021 00:38:37 +0900 Subject: DOMTokenList.keys() を新規翻訳 (#421) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * DOMTokenList.keys() を新規翻訳 2021/02/20 時点の英語版に基づき新規翻訳 * 表現とリンク先を若干修正 --- files/ja/web/api/domtokenlist/keys/index.html | 75 +++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 files/ja/web/api/domtokenlist/keys/index.html (limited to 'files') 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 +--- +

{{APIRef("DOM")}}

+ +

keys() は {{domxref("DOMTokenList")}} インターフェイスのメソッドで、このオブジェクトに含まれるすべてのキーを処理することができる{{jsxref("Iteration_protocols","反復子","",1)}}を返します。キーの型は unsigned integer です。 +

+ +

構文

+ +
tokenList.keys();
+ +

引数

+ +

なし

+ +

返値

+ +

{{jsxref("Iteration_protocols","反復子","",1)}}を返します。

+ +

+ +

次の例では、 {{domxref("Element.classList")}} を使用して {{htmlelement("span")}} 要素に設定されたクラスのリストを DOMTokenList として受け取ります。 keys() を使用してキーを含む反復子を取得してから、 for ... of ループを使用してそれぞれを反復処理し、それを <span> の {{domxref("Node.textContent")}} に書き込みます。

+ +

最初に HTML です。

+ +
<span class="a b c"></span>
+ +

そして JavaScript です。

+ +
var span = document.querySelector("span");
+var classes = span.classList;
+var iterator = classes.keys();
+
+for(var value of iterator) {
+  span.textContent += value + ' ++ ';
+}
+ +

出力結果は以下のようになります。

+ +

{{ EmbedLiveSample('Examples', '100%', 60) }}

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('DOM WHATWG','#domtokenlist','keys() (as iterable<Node>)')}} + {{Spec2('DOM WHATWG')}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("api.DOMTokenList.keys")}}

-- cgit v1.2.3-54-g00ecf