XML DOM namespaceURI 屬性
Attr 對(duì)象
定義和用法
namespaceURI 屬性設(shè)置或返回屬性的命名空間 URI。
語(yǔ)法
實(shí)例
下面的代碼片段使用 loadXMLDoc() 把 "books_ns.xml" 載入 xmlDoc 中,并返回 "lang" 屬性的命名空間 URI:
實(shí)例
xmlDoc=loadXMLDoc("books_ns.xml");
x=xmlDoc.getElementsByTagName('book');
for(i=0;i<x.length;i++)
{
document.write(x.item(i).attributes[0].namespaceURI);
document.write("
");
}
上面的代碼將輸出:
//www.15014759268.cn/children/
//www.15014759268.cn/xml/
嘗試一下 ?
Attr 對(duì)象
更多建議: