XML DOM value الخاصية

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

قيمة الخصائص تعود بالقيمة.

القواعد

attrObject.value

مثال

السطر التالي سيزيد "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;
}

تجربة شخصياً