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; }