NodeList.values()
Syntax
js
nodeList.values();
Return value
iterator
를 반환합니다.
Example
js
var node = document.createElement("div");
var kid1 = document.createElement("p");
var kid2 = document.createTextNode("hey");
var kid3 = document.createElement("span");
node.appendChild(kid1);
node.appendChild(kid2);
node.appendChild(kid3);
var list = node.childNodes;
// Using for..of
for (var value of list.values()) {
console.log(value);
}
결과는 다음과 같습니다 :
<p> #text "hey" <span>
명세서
No specification found
No specification data found for api.NodeList.values
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
브라우저 호환성
BCD tables only load in the browser