XML DOM namespaceURI 属性
XML基础 2023-08-12 18:09:50小码哥的IT人生shichen
XML DOM namespaceURI 属性
定义和用法
namespaceURI 属性可返回某个节点的命名空间 URI。
语法:
nodeObject.namespaceURI
实例
在所有的例子中,我们将使用 XML 文件 books_ns.xml,以及 JavaScript 函数 loadXMLDoc()。
下面的代码片段可返回 <title> 元素的命名空间 URI:
xmlDoc=loadXMLDoc("books_ns.xml");
var x=xmlDoc.getElementsByTagName('title');
for(i=0;i<x.length;i++)
{
document.write(x.item(i).namespaceURI
);
document.write("<br />");
}
输出:
http://www.phpcodeweb.com/children/
http://www.phpcodeweb.com/xml/
TIY
完整实例【取得某个节点的前缀、本地名称、命名空间 URI、以及绝对基准 URI】:
<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/demo/example/xdom/books_ns.xml");
var x=xmlDoc.getElementsByTagName('title');
for(i=0;i<x.length;i++)
{
document.write("Prefix: " + x.item(i).prefix);
document.write("<br />");
document.write("Local name: " + x.item(i).localName);
document.write("<br />");
document.write("Namespace URI: " + x.item(i).namespaceURI);
document.write("<br />");
document.write("Base URI: " + x.item(i).baseURI);
document.write("<br />");
document.write("<br />");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html