XML DOM xmlStandalone 属性

2018-08-05 18:28 更新

XML DOM xmlStandalone 属性


Document 对象参考手册 Document 对象

定义和用法

xmlStandalone 属性设置或返回文档是否为 standalone。

语法

documentObject.xmlStandalone


实例

下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并显示 XML 编码、standalone 属性和文档的 XML 版本:

实例

xmlDoc=loadXMLDoc("books.xml");

document.write("XML encoding: " + xmlDoc.xmlEncoding);
document.write("
");
document.write("XML standalone: " + xmlDoc.xmlStandalone);
document.write("
");
document.write("XML version: " + xmlDoc.xmlVersion);
document.write("
");
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 对象参考手册 Document 对象
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号