XML DOM xmlStandalone 属性
❮ 文档对象
示例
以下代码片段将 "books.xml" 加载到 xmlDoc 中,并显示 XML 编码、standalone 属性和文档的 XML 版本
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
function myFunction(xml) {
var xmlDoc = xml.responseXML;
document.getElementById("demo").innerHTML =
"XML 编码: " + xmlDoc.xmlEncoding +
"<br>XML standalone: " + xmlDoc.xmlStandalone +
"<br>XML 版本: " + xmlDoc.xmlVersion +
"<br>解析时使用的编码: " + xmlDoc.inputEncoding;
}
输出
XML 编码: UTF-8
XML standalone: false
XML 版本: 1.0
解析时的编码: UTF-8
自己尝试 »
定义和用法
xmlStandalone 属性设置或返回文档是否为独立文档。
语法
documentObject.xmlStandalone
❮ 文档对象