XML DOM name अटिब्यूट

वर्णन और उपयोग

name प्रयोग में आने वाला वाक्यांश

व्याकरण

attrObject.name

उदाहरण

इस कोड द्वारा "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].name +
        " = " +
        x.item(i).attributes[0].value + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}

अपने आप से प्रयोग करें