XML DOM nodeType ਪੈਰਾਮੀਟਰ

ਵਿਵਰਣ ਅਤੇ ਵਰਤੋਂ

nodeType ਪੈਰਾਮੀਟਰ ਨੂੰ ਜਾਂਚ ਕਰਦਾ ਹੈ ਅਤੇ ਨੋਡ ਦਾ ਪ੍ਰਕਾਰ ਵਾਪਸ ਦਿੰਦਾ ਹੈ。

ਵਿਧਾਨ

attrObject.nodeType

ਉਦਾਹਰਣ

ਹੇਠਲਾ ਕੋਡ "books.xml" ਨੂੰ xmlDoc ਵਿੱਚ ਲੋਡ ਕਰਦਾ ਹੈ ਅਤੇ category ਅਟਰੀਬਿਊਟ ਦੇ ਨੋਡ ਨਾਮ, ਨੋਡ ਮੁੱਲ ਅਤੇ ਨੋਡ ਪ੍ਰਕਾਰ ਦਿਸਾਉਂਦਾ ਹੈ:

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, i, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.getElementsByTagName('book');
    for (i = 0; i < x.length; i++) {
        txt += x.item(i).attributes[0].nodeName +
        " = " +
        x.item(i).attributes[0].nodeValue +
        " (nodetype: " + x.item(i).attributes[0].nodeType + ")" + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}

ਆਪਣੇ ਅਨੁਸਾਰ ਪ੍ਰਯੋਗ ਕਰੋ