中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

XML DOM nodeType 屬性


Attr 對(duì)象參考手冊(cè) Attr 對(duì)象

定義和用法

nodeType 屬性返回節(jié)點(diǎn)的類型。

語法

attrObject.nodeType

實(shí)例

實(shí)例

xmlDoc=loadXMLDoc("books.xml"); 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(" (nodetype: " + x.item(i).attributes[0].nodeType + ")"); document.write("<br>"); }

輸出:

category = COOKING (nodetype: 2)
category = CHILDREN (nodetype: 2)
category = WEB (nodetype: 2)
category = WEB (nodetype: 2)

運(yùn)行代碼 ?

Attr 對(duì)象參考手冊(cè) Attr 對(duì)象其他擴(kuò)展