このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docs コミュニティーについてもっと知り、仲間になるにはこちらから。

View in English Always switch to English

NodeList: values() メソッド

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2017年10月⁩.

NodeList.values() メソッドは、このオブジェクトに含まれるすべての値を走査することができるイテレーターを返します。値は Node です。

構文

js
values()

返値

イテレーターを返します。

js
const node = document.createElement("div");
const kid1 = document.createElement("p");
const kid2 = document.createTextNode("hey");
const kid3 = document.createElement("span");

node.appendChild(kid1);
node.appendChild(kid2);
node.appendChild(kid3);

const list = node.childNodes;

// for...of の使用
for (const value of list.values()) {
  console.log(value);
}

結果は次の通りです。

<p>
#text "hey"
<span>

ブラウザーの互換性

関連情報