XML DOM baseURI 属性
XML DOM Attr 对象的 baseURI 属性返回属性的绝对基准 URI
语法
attrObject.baseURI
范例
下面的范例返回 "lang" 属性的基准 URI
xmlDoc=loadXMLDoc("/static/media/dom/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>"); }