XML DOM nodeType 属性

定义和用法

nodeType 属性返回所选节点的节点类型。

语法

elementNode.nodeType
节点编号: 节点名称:
1 Element
2 Attribute
3 Text
4 CDATA Section
5 Tambuliko la Kitambaa
6 Kitambaa
7 Inarifu ya Kichwa
8 Mawazo ya Kichwa
9 Kitabu
10 Aina ya Kitabu
11 Makala ya Kitabu
12 Fupi ya Utafiti

Mifano

Mfano 1

Machache ya chaguo hii ingeza "books.xml" kwenye xmlDoc, na kutaka aina ya kiwango cha kwanza cha <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];
    document.getElementById("demo").innerHTML =
    x.nodeType;
}

亲自试一试

Mfano 2

Tunafikia macho ya kipenzi:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
        myFunction(this);
    }
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
// Kuangalia kuanzia cha kwanza cha kiwango kina msingi
function get_firstchild(n) {
    var x = n.firstChild;
    while (x.nodeType != 1) {
        x = x.nextSibling;
    }
    return x;
}
function myFunction(xml) {
    var x, i, txt, xmlDoc, firstNode, xmlDoc;
    xmlDoc = xml.responseXML;
    x = xmlDoc.documentElement;
    txt = "";
    firstNode = get_firstchild(x);
    for (i = 0; i < firstNode.childNodes.length; i++) { 
        if (firstNode.childNodes[i].nodeType == 1) {
            //Muungu wa kwa kufanya kipengele cha kitumiaji peke yake
            txt += firstNode.childNodes[i].nodeName + 
            " = " + 
            firstNode.childNodes[i].childNodes[0].nodeValue + "
"; } } document.getElementById("demo").innerHTML = txt; }

亲自试一试