NodeList: keys() メソッド
NodeList.keys()
メソッドは、このオブジェクトに含まれるすべてのキーを走査することができるイテレーター
を返します。キーは unsigned integer
です。
構文
js
keys()
返値
イテレーター
を返します。
例
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);
let list = node.childNodes;
// for...of の使用
for (const key of list.keys()) {
console.log(key);
}
結果は次の通りです。
0 1 2
ブラウザーの互換性
BCD tables only load in the browser