XML DOM nodeType అంశం

నిర్వచనం మరియు వినియోగం

nodeType అంశం నోడ్ రకం తిరిగి ఇస్తుంది.

సంరచన

documentObject.nodeType

ఉదాహరణ

ఈ కోడు "books.xml" ను xmlDoc లో లోడ్ చేస్తుంది మరియు రూట్ నోడ్ యొక్క నోడ్ పేరు మరియు నోడ్ రకం చూపుతుంది:

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 +
    " (nodetype: " + xmlDoc.nodeType + ")";
}

亲自试一试