วิธี appendChild() ของ XML DOM
การอธิบายและการใช้งาน
appendChild()
วิธีการเพิ่มตัวแทนลูกใหม่ที่จบของลิสต์ลูกของตัวแทน
สัญญาณเตือน:ถ้า newchild ลบล่วงหน้าหากมีในต้นไม้
รูปแบบ
nodeObject.appendChild(newchild)
ตัวแปร | รายละเอียด |
---|---|
newchild | ตัวแทนที่ต้องการเพิ่ม |
รายละเอียดเทคนิค
รุ่น DOM: | Core Level 1 Node Object ที่แก้ไขใน DOM Level 3 |
---|---|
ค่าที่กลับมา | Node ตัวแทน。ตัวแทนที่ถูกเพิ่ม |
实例
例子 1
下面的代码将 "books.xml" 加载到 xmlDoc 中,并创建一个节点 (<edition>),并将其追加到第一个 <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 xmlDoc = xml.responseXML; var newel = xmlDoc.createElement("edition"); var x = xmlDoc.getElementsByTagName("book")[0]; x.appendChild(newel); document.getElementById("demo").innerHTML = x.getElementsByTagName("edition")[0].nodeName; }
ตัวอย่าง 2
เพิ่มลูกโครงข่าวเข้าไปทุกหน่วย <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, y, z, i, xLen, yLen, newEle, newText, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName("book"); xLen = x.length; for (i = 0; i < xLen; i++) { newEle = xmlDoc.createElement("edition"); newText = xmlDoc.createTextNode("first"); newEle.appendChild(newText); x[i].appendChild(newEle); } // ออกแสดงทั้งหมด title และ edition y = xmlDoc.getElementsByTagName("title"); yLen = y.length z = xmlDoc.getElementsByTagName("edition"); for (i = 0; i < yLen; i++) { txt += y[i].childNodes[0].nodeValue + " - Edition: " + z[i].childNodes[0].nodeValue + "<br>"; } document.getElementById("demo").innerHTML = txt; }
瀏覽器支持
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 支持 | 支持 | 支持 | 支持 |
所有主流瀏覽器都支持 appendChild() 方法。