XML childNodes 속성

1 개요[ | ]

XML childNodes Property
XML childNodes 속성
<script>
var xhr = new XMLHttpRequest();
xhr.onload = function() {
  x = xhr.responseXML.getElementsByTagName("title")[1].childNodes[0];
  document.write(x.nodeValue);
}
xhr.open("GET", "//zetawiki.com/ex/xml/books.xml");
xhr.send();
// Midnight Rain
</script>

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}