Thuộc tính nodeName của XML DOM
Định nghĩa và cách sử dụng
nodeName
Thuộc tính trả về tên thẻ của phần tử được chọn.
Cú pháp
elementNode.nodeName
Mô hình
Dưới đây là mã nguồn sẽ tải "books.xml" vào xmlDoc và lấy tên thẻ từ phần tử đầu tiên <title>:
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.getElementsByTagName("title")[0]; document.getElementById("demo").innerHTML = x.nodeName; }