XML DOM getElementsByTagNameNS() 方法
การเขียนและการใช้งาน
getElementsByTagNameNS()
เมธอดนี้กลับมาด้วย NodeList ที่มีชื่อและโซ่แหล่งข้อมูลที่กำหนด
การใช้งาน
getElementsByTagNameNS(ns,name)
ตัวแปร | คำอธิบาย |
---|---|
ns | ข้อความ กำหนดชื่อโซ่แหล่งข้อมูลที่ต้องการค้นหา |
name | ข้อความ กำหนดชื่อแบบตัวอย่างที่ต้องการค้นหา |
ตัวอย่าง
รหัสที่ต่อไปนี้จะนำ "books.xml" โหลดเข้า xmlDoc และเพิ่มเลิฟเลิฟให้แก่แบบตัวอย่าง <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, newel, newtext, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName("book"); for (i = 0; i < x.length; i++) { newel = xmlDoc.createElementNS("p", "edition"); newtext = xmlDoc.createTextNode("First"); newel.appendChild(newtext); x[i].appendChild(newel); } // ออกทุก title และ edition y = xmlDoc.getElementsByTagName("title"); z = xmlDoc.getElementsByTagNameNS("p","edition"); for (i = 0; i < y.length; i++) { txt += y[i].childNodes[0].nodeValue + " - " + z[i].childNodes[0].nodeValue + " edition." + "Namespace: " + z[i].namespaceURI + "<br>"; } document.getElementById("demo").innerHTML = txt; }