XML DOM xmlEncoding 属性
❮ Document 文档对象
实例
以下代码片段将"books.xml" 加载到 xmlDoc 中,显示文档的xml编码、独立属性和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 encoding: " + xmlDoc.xmlEncoding +
"<br>XML standalone: " + xmlDoc.xmlStandalone +
"<br>XML
version: " + xmlDoc.xmlVersion +
"<br>Encoding used
when parsing: " + xmlDoc.inputEncoding;
}
输出:
XML encoding: UTF-8
XML standalone: false
XML version: 1.0
Encoding when parsing: UTF-8
亲自试一试 »
定义和用法
xmlEncoding 属性返回文档的编码。
语法
documentObject.xmlEncoding
❮ Document 文档对象