خاصية isId DOM XML

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

إذا كان معروفًا أن الخاصية تنتمي إلى نوع ID (مثل أن تحتوي على معرف عنصر المالك)، isId الخاصية تعود إلى true، وإلا تعود إلى false.

اللغة

attrObject.isId

مثال

الشيفرة التالية تقوم بتحميل "books.xml" إلى xmlDoc وترجع إذا كانت الخاصية ID تخص عنصر <book>.

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');
    للمعادلة(i = 0; i < x.length; i++) {
        txt += x.item(i).attributes[0].isId + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}

جرب بنفسك