XML DOM doctype 属性
❮ Document 文档对象
实例
以下代码片段将"note_internal_dtd.xml" 加载到 xmlDoc 中,并返回DocumentType对象:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "note_internal_dtd.xml", true);
xhttp.send();
function myFunction(xml) {
var xmlDoc = xml.responseXML;
document.getElementById("demo").innerHTML =
xmlDoc.doctype;
}
输出:
[object DocumentType]
亲自试一试 »
定义和用法
doctype 属性可返回与文档相关的文档类型声明(Document Type Declaration)。
对于没有 DTD 的 XML 文档,则返回 null。
此属性可提供对 DocumentType 对象(Document 的一个子节点)的直接访问。
语法
documentObject.doctype
❮ Document 文档对象