XML DOM createElement() পদ্ধতি

বর্ণনা ও ব্যবহার

createElement() পদ্ধতি এলিমেন্ট নোড তৈরি করে

এই পদ্ধতি এলিমেন্ট অবজেক্ট ফিরিয়ে দেয়

গঠনশৈলী

createElement(name)
পারামিটার বর্ণনা
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, 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);
    }
    // সব টাইটেল এবং 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;
}

亲自试一试