XML DOM nodeName shuxing
Dingyi he yongfa
nodeName shuxing genju jiedian de leixing hui fan hui qi mingcheng.
Yufa:
attrObject.nodeName
Shili
Zai suoyou de lili zhong, women jiang shi yong XML wenjian books.xmldanji, jieyu JavaScript hanfu loadXMLDoc()。
Kod berikut menunjukkan nama, nilai serta jenis node atribut category:
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
var x=xmlDoc.getElementsByTagName('book');
for(i=0;i<x.length;i++)
{
document.write(x.item(i).attributes[0].nodeName
);
document.write(" = ");
document.write(x.item(i).attributes[0].nodeValue);
document.write(" (jenis node: ");
document.write(x.item(i).attributes[0].nodeType + ")");
document.write("<br />");
}
Output kode di atas adalah:
category = children (jenis node: 2) category = cooking (jenis node: 2) category = web (jenis node: 2) category = web (jenis node: 2)