XML DOM documentURI 属性
XML基础 2023-08-12 23:31:56小码哥的IT人生shichen
XML DOM documentURI 属性
定义和用法
documentURI 属性可设置或返回文档的位置。
语法:
documentObject.documentURI
实例
在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()。
以下代码片段可显示 XML 文档的位置:
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
document.write("Document location: " + xmlDoc.documentURI);
输出:
Document location: http://www.phpcodeweb.com/example/xdom/books.xml
TIY
完整实例【取得文档的位置】:
<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.xml");
document.write("Document location: " + xmlDoc.documentURI);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html