XML DOM doctype 属性
XML基础 2023-08-12 23:29:18小码哥的IT人生shichen
XML DOM doctype 属性
定义和用法
doctype 属性可返回与文档相关的文档类型声明(Document Type Declaration)。
对于没有 DTD 的 XML 文档,则返回 null。
此属性可提供对 DocumentType 对象(Document 的一个子节点)的直接访问。
语法:
documentObject.doctype
实例
在所有的例子中,我们将使用 XML 文件 note_internal_dtd.xml,以及 JavaScript 函数 loadXMLDoc()。
下面的代码片段可返回一个 DocumentType 对象:
xmlDoc=loadXMLDoc("note_internal_dtd.xml");
document.write(xmlDoc.doctype
);
输出:
[object DocumentType]
TIY
完整实例【取得与 XML 文档相关联的 DOCTYPE 的名称】:
<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/demo/example/xdom/note_internal_dtd.xml");
document.write(xmlDoc.doctype.name);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html