XML DOM specified अटिब्यूट
वर्णन और उपयोग
यदि दस्तावेज़ में अटिब्यूट मान सेट किया गया है, तो specified
इस प्रतियोगिता वापसी true देती है; यदि यह DTD/Schema में डिफ़ॉल्ट मान है, तो false देती है。
व्याकरण
attrObject.specified
उदाहरण
इस कोड का उद्देश्य "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].specified + "<br>"; } document.getElementById("demo").innerHTML = txt; }