XML DOM nodeType 属性

定义和用法

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

语法

elementNode.nodeType
节点编号: 节点名称:
1 Element
2 Attribute
3 Text
4 CDATA Section
5 Referensi Entitas
6 Entitas
7 Instruksi Proses
8 Komentar
9 Dokumen
10 Tipe Dokumen
11 Fragment Dokumen
12 Notasi

Contoh

Contoh 1

Kode di bawah ini mengambil "books.xml" ke dalam xmlDoc dan mengambil jenis node dari elemen <title> pertama:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
   jika (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;
}

亲自试一试

Contoh 2

Lewati node teks kosong:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
    jika (this.readyState == 4 && this.status == 200) {
        myFunction(this);
    }
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
//Periksa apakah node pertama adalah node elemen
function get_firstchild(n) {
    var x = n.firstChild;
    selama (x.nodeType != 1) {
        x = x.nextSibling;
    }
    kembalikan x;
}
function myFunction(xml) {
    var x, i, txt, xmlDoc, firstNode, xmlDoc;
    xmlDoc = xml.responseXML;
    x = xmlDoc.documentElement;
    txt = "";
    firstNode = get_firstchild(x);
    untuk (i = 0; i < firstNode.childNodes.length; i++) { 
        jika (firstNode.childNodes[i].nodeType == 1) {
            //Proses hanya node elemen
            txt += firstNode.childNodes[i].nodeName +"" 
            " = " + 
            firstNode.childNodes[i].childNodes[0].nodeValue + "<br>";
        }
    }
    document.getElementById("demo").innerHTML = txt; 
}

亲自试一试