XML DOM getAttributeNodeNS() 方法——Element 對象

2018-08-05 16:50 更新

XML DOM getAttributeNodeNS() 方法


Element 對象參考手冊 Element 對象

定義和用法

getAttributeNS() 方法通過命名空間 URI 和名稱取得屬性節(jié)點。

語法

elementNode.getAttributeNodeNS(ns,name)

參數(shù) 描述
ns 必需。規(guī)定從中獲取屬性值的命名空間 URI。
name 必需。規(guī)定從中獲取屬性值的屬性。


實例

下面的代碼片段使用 loadXMLDoc() 把 "books_ns.xml" 載入 xmlDoc 中,并從第一個 <title> 元素中取得 "lang" 屬性節(jié)點:

實例

xmlDoc=loadXMLDoc("books_ns.xml");

x=xmlDoc.getElementsByTagName("title")[0];
ns="//hgci.cn/children/";

y=x.getAttributeNodeNS(ns,"lang");

document.write(y.nodeName);
document.write(" = ");
document.write(y.nodeValue);

輸出:

c:lang = en

嘗試一下 ?

Element 對象參考手冊 Element 對象
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號