XML DOM getAttributeNodeNS()
XML DOM Element 对象的 getAttributeNS() 方法通过命名空间 URI 和名称取得属性节点。
语法
elementNode.getAttributeNodeNS(ns,name)
参数
参数 | 描述 |
---|---|
ns | 必需。规定从中获取属性值的命名空间 URI |
name | 必需。规定从中获取属性值的属性 |
范例
下面的范例从第一个 <title> 元素中取得 "lang" 属性节点
xmlDoc=loadXMLDoc("books_ns.xml"); x=xmlDoc.getElementsByTagName("title")[0]; ns="http://www.twle.cn/w3cnote/"; y=x.getAttributeNodeNS(ns,"lang"); document.write(y.nodeName); document.write(" = "); document.write(y.nodeValue);