XML DOM textContent অ্যাট্রিবিউট
সংজ্ঞা ও ব্যবহার
textContent
অ্যাট্রিবিউট সেট করা বা অ্যাট্রিবিউটের টেক্সট কনটেন্ট ফিরিয়ে দেয়।
সংজ্ঞা
attrObject.textContent
একটি উদাহরণ
উদাহরণ 1
নিচের কোড "books.xml"-কে xmlDoc-তে লোড করে এবং 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, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName('book'); for (i = 0; i < x.length; i++) { txt += x.item(i).attributes[0].textContent + "<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.getElementsByTagName('book'); for (i = 0; i < x.length; i++) { x.item(i).attributes[0].textContent = "TOO_OLD"; } for (i = 0; i < x.length; i++) { txt += x.item(i).attributes[0].textContent + "<br>"; } document.getElementById("demo").innerHTML = txt; }