Thuộc tính nodeValue của XML DOM

Định nghĩa và cách sử dụng

nodeValue Thiết lập hoặc trả về giá trị của nút, dựa trên loại của nó.

Ngữ pháp

nodeObject.nodeValue

Mô hình

Dưới đây là mã nguồn sẽ tải "books.xml" vào xmlDoc và hiển thị tên và giá trị của nút gốc:

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;
    document.getElementById("demo").innerHTML =
    "Nodename: " + xmlDoc.nodeName +
    (value: " + xmlDoc.childNodes[0].nodeValue) + ")";
}

Thử ngay