XML DOM nodeName गुण

रोज़गार और उपयोग

nodeName पैरामीटर वापस नोड का नाम देता है, इसके प्रकार के अनुसार。

वाक्यांश

documentObject.nodeName

उदाहरण

उदाहरण 1

नीचे वाला कोड "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 =
    "नोडेनेम: " + xmlDoc.nodeName +
    " (नोडेटाइप: " + xmlDoc.nodeType + ")";
}

स्वयं प्रयोग करें

उदाहरण 2

दिखाएं सभी एलिमेंटों के nodeName और nodeValue:

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 x, y, i, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.documentElement;
    y = xmlDoc.documentElement.childNodes;
    for(i = 0; i < y.length; i++) {
        if (y[i].nodeType != 3) {
            txt += "नोडेनेम: " + y[i].nodeName +
            " (मूल्य: " + y[i].childNodes[0].nodeValue + ")<br>";
        }
        for(z = 0; z < y[i].childNodes.length; z++) {
            if (y[i].childNodes[z].nodeType != 3) {
                txt += "नोडेनेम: " + y[i].childNodes[z].nodeName +
                " (मूल्य: " + y[i].childNodes[z].childNodes[0].nodeValue + ")<br>";
            }
        }
    }
    document.getElementById("demo").innerHTML = 
    "नोडेनेम: " + xmlDoc.nodeName +
    " (value: " + xmlDoc.childNodes[0].nodeValue + ")<br>" +
    "Nodename: " + x.nodeName + 
    " (value: " + x.childNodes[0].nodeValue + ")<br>" +
    txt;
}

स्वयं प्रयोग करें