NodeList: phương thức entries()
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since October 2017.
Phương thức NodeList.entries() trả về một iterator cho phép duyệt qua tất cả các cặp khóa/giá trị có trong đối tượng này. Các giá trị là những đối tượng Node.
Cú pháp
js
entries()
Tham số
Không có.
Giá trị trả về
Trả về một iterator.
Ví dụ
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;
// Using for...of
for (const entry of list.entries()) {
console.log(entry);
}
Kết quả là:
Array [ 0, <p> ] Array [ 1, #text "hey" ] Array [ 2, <span> ]