خاصية XML DOM name

التعريف والاستخدام

name الخاصية تعود بالاسم.

القواعد

attrObject.name

مثال

النص التالي سيقوم بتحميل "books.xml" إلى xmlDoc وعرض أسماء وتقيمات الخاصية category:

إعلان متغيرات xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = وظيفة() {
   إذا (this.readyState == 4 && this.status == 200) {
       myFunction(this);
   }
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
وظيفة myFunction(xml) {
    إعلان متغيرات x, i, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.getElementsByTagName('book');
    لـ (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;
}

تجربة شخصياً