亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

XML DOM xmlEncoding 屬性

Document 對(duì)象參考手冊(cè)

定義和用法

xmlEncoding 屬性可返回文檔的編碼方法。

語(yǔ)法:

documentObject.xmlEncoding

實(shí)例

在所有的例子中,我們將使用 XML 文件 books.xml,以及 JavaScript 函數(shù) 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

Document 對(duì)象參考手冊(cè)