วิธี XML DOM item()

การระบุและใช้งาน

item() วิธีที่ฟังก์ชันมีความหมายคือเริ่มต้นจากตำแหน่งที่กำหนดโดยค่าที่กำหนด

ระบุ

item(index)
ตัวแทน คำอธิบาย
index ดัชนี

ตัวอย่าง

ตัวอย่าง 1

รหัสข้างล่างนี้จะนำ "books.xml" ใส่ xmlDoc จากนั้นวนรอบละเอียด <book> และพิมพ์ค่า attribute ของ 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, att, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.getElementsByTagName('book');
    for (i = 0; i < x.length; i++) {
        att = x.item(i).attributes.getNamedItem("category");
        txt += att.value + "<br>";
    }
    // document.getElementById("demo").innerHTML = txt;
}

親自試一試

ตัวอย่าง 2

วนรอบละเอียดของรายการในตารางข้อมูลของจุด:

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.documentElement.childNodes;
    for (i = 0; i < x.length; i++) { 
        if (x.item(i).nodeType == 1) {
            txt += x.item(i).nodeName + "<br>";
        }
    }
    // document.getElementById("demo").innerHTML = txt; 
}

親自試一試

ตัวอย่าง 3

เปลี่ยนค่าของโครงการ:

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, attlist, att, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.getElementsByTagName("book");
    // แก้ไขค่าของคุณสมบัติ attribute ของ category
    for (i = 0; i < x.length; i++) { 
        attlist = x.item(i).attributes;
        att = attlist.getNamedItem("category");
        att.value = "BESTSELLER";
    }
    // 輸出所有 title 和 edition
    for (i = 0; i < x.length; i++) { 
        txt += x[i].getAttribute("category") + "<br>";
    }
    // document.getElementById("demo").innerHTML = txt; 
}

親自試一試