طريقة appendData() لـ XML DOM
التعريف والاستخدام
appendData()
يضيف الطريقة إلى نهاية عقدة النص نصًا.
النحو
textNode.appendData(text)
الم 参数 | وصف |
---|---|
text | مطلوب. النص الذي سيتم إضافته إلى عقدة النص. |
مثال
الآتي سيثبت "books.xml" في xmlDoc ويضيف النص إلى العنصر الأول <title>:
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 x = xmlDoc.getElementsByTagName("title")[0].childNodes[0]; x.appendData(" Cooking"); document.getElementById("demo").innerHTML = x.data; }