XML DOM value गुण
व्याख्या और उपयोग
value
गुण गुण के मूल्य को वापस देता है。
व्याकरण
attrObject.value
उदाहरण
इस कोड का उद्देश्य "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; }