Thuộc tính documentElement của XML DOM
Định nghĩa và sử dụng
documentElement
Thuộc tính trả về điểm gốc của tài liệu.
Ngữ pháp
documentObject.documentElement
Mô hình
Dưới đây là mã nguồn sẽ tải "books.xml" vào xmlDoc và hiển thị vị trí của tài liệu XML:
var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); } }; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { var xmlDoc = xml.responseXML; var x = xmlDoc.documentElement; document.getElementById("demo").innerHTML = "Nodename: " + x.nodeName + "<br>" "Nodevalue: " + x.nodeValue + "<br>" "Nodetype: " + x.nodeType; }