doctype Property
Contains the document type node that specifies the document type definition (DTD) for this document.
var objXMLDOMDocumentType = oXMLDOMDocument.doctype;
Example
The following script example creates an IXMLDOMDocumentType object, and then displays the name property of the object.
var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.3.0"); var MyDocType; xmlDoc.async = false; xmlDoc.load("books.xml"); if (xmlDoc.parseError.errorCode != 0) { var myErr = xmlDoc.parseError; WScript.Echo("You have error " + myErr.reason); } else { MyDocType = xmlDoc.doctype; if (MyDocType != null) { WScript.Echo(MyDocType.name); } }
The property is read-only. For XML, it points to the node of type NODE_DOCUMENT_TYPE that specifies the DTD. It returns Null for HTML documents and XML documents without a DTD.
An XML document can contain a document type declaration before the first element in the document. It starts with the tag <!DOCTYPE> and can specify an external DTD.