XML DOM doctype 属性
XML DOM Document 对象的 doctype 属性返回与文档相关的文档类型声明 ( DTD,全称 Document Type Declaration )
对于没有 DTD 的 XML 文档,则返回 null
该属性提供对 DocumentType 对象 ( Document 的一个子节点 ) 的直接访问
语法
documentObject.doctype
范例
下面的范例返回了 DocumentType 对象
xmlDoc=loadXMLDoc("/static/media/dom/note_internal_dtd.xml"); document.write(xmlDoc.doctype);