A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/ko/docs/Web/API/NodeList/values below:

NodeList.values() - Web API | MDN

NodeList.values()

Baseline Widely available

NodeList.values() 메서드는 이 객체에 포함된 모든 값을 통과할 수 있는 iterator를 반환합니다. 값은 Node 객체 입니다.

Syntax Return value

iterator를 반환합니다.

Example
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>
명세서 브라우저 호환성 See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4