XML DOM xmlVersion 属性
XML基础 2023-08-12 23:41:23小码哥的IT人生shichen
XML DOM xmlVersion 属性
定义和用法
xmlVersion 属性可设置或返回文档的 XML 版本。
语法:
documentObject.xmlVersion
实例
在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()。
以下代码片段可显示 XML 的编码方法、standalone 属性以及文档的 XML 版本:
xmlDoc=loadXMLDoc("books.xml");
document.write("XML encoding: " + xmlDoc.xmlEncoding);
document.write("<br />");
document.write("XML standalone: " + xmlDoc.xmlStandalone);
document.write("<br />");
document.write("XML version: " + xmlDoc.xmlVersion
);
document.write("<br />");
document.write("Encoding when parsing: " + xmlDoc.inputEncoding);
输出:
XML encoding: ISO-8859-1
XML standalone: false
XML version: 1.0
Encoding when parsing: ISO-8859-1
TIY
完整实例【取得 XML 的编码方法、standalone 属性以及文档的 XML 版本】:
<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("XML encoding: " + xmlDoc.xmlEncoding);
document.write("<br />");
document.write("XML standalone: " + xmlDoc.xmlStandalone);
document.write("<br />");
document.write("XML version: " + xmlDoc.xmlVersion);
document.write("<br />");
document.write("Encoding used when parsing: " + xmlDoc.inputEncoding);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html