name 属性返回 DTD 的名称(紧随关键词 DOCTYPE 的名称)。
documentObject.doctype.name
下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并显示 DTD 的名称:
xmlDoc=loadXMLDoc("note_internal_dtd.xml"); document.write(xmlDoc.doctype.name);
输出:
note