XML DOM appendChild() পদ্ধতি

সংজ্ঞা ও ব্যবহার

appendChild() পদ্ধতি নির্দিষ্ট ইলেকট্রনিক নোডের শেষ সাব-নোডের পরে নোড যুক্ত করে。

এই পদ্ধতি একটি নতুন সাব-নোড ফিরিয়ে দেয়。

গঠনশৈলী

appendChild(node)
পারামিটার বর্ণনা
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

নিচের কোড "books.xml"-কে xmlDoc-তে লোড করে এবং নতুন নোডগুলোকে সমস্ত <book> নোডে জুড়াবে:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
    if (xhttp.readyState == 4 && xhttp.status == 200) {
        myFunction(xhttp);
    }
};
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.createElement("edition");
        newtext = xmlDoc.createTextNode("first");
        newel.appendChild(newtext);
        x[i].appendChild(newel);
    }
    // সমস্ত title এবং edition প্রদর্শন করা হবে
    y = xmlDoc.getElementsByTagName("title");
    z = xmlDoc.getElementsByTagName("edition");
    for (i = 0; i < y.length; i++) {
        txt += y[i].childNodes[0].nodeValue +""
        " - Edition: " +
        z[i].childNodes[0].nodeValue + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}

亲自试一试