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

XML DOM prefix 屬性


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

定義和用法

prefix 屬性設(shè)置或返回屬性的命名空間前綴。

語(yǔ)法

attrObject.prefix

實(shí)例

實(shí)例

xmlDoc=loadXMLDoc("books_ns.xml"); x=xmlDoc.getElementsByTagName('book'); for(i=0;i<x.length;i++) { document.write("Prefix: " + x.item(i).attributes[0].prefix); document.write("<br>"); document.write("Local name: " + x.item(i).attributes[0].localName); document.write("<br>"); document.write("Namespace URI: " + x.item(i).attributes[0].namespaceURI); document.write("<br>"); document.write("Base URI: " + x.item(i).attributes[0].baseURI); document.write("<br>"); document.write("<br>"); }

上面的代碼將輸出:

c
x

運(yùn)行代碼 ?

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