The DOMImplementation.createDocumentType()
method returns a DocumentType
object which can either be used with DOMImplementation.createDocument
upon document creation or can be put into the document via methods like Node.insertBefore()
or Node.replaceChild()
.
doctype = document.implementation.createDocumentType(qualifiedNameStr, publicId, systemId)
DOMString
containing the qualified name, like svg:svg
.DOMString
containing the PUBLIC
identifier.DOMString
containing the SYSTEM
identifiers.var dt = document.implementation.createDocumentType('svg:svg', '-//W3C//DTD SVG 1.1//EN', 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'); var d = document.implementation.createDocument('http://www.w3.org/2000/svg', 'svg:svg', dt); alert(d.doctype.publicId); // -//W3C//DTD SVG 1.1//EN
Specification | Status | Comment |
---|---|---|
DOM The definition of 'DOMImplementation.createDocumentType' in that specification. | Living Standard | No change from Document Object Model (DOM) Level 3 Core Specification |
Document Object Model (DOM) Level 3 Core Specification The definition of 'DOMImplementation.createDocumentType' in that specification. | Obsolete | No change from Document Object Model (DOM) Level 2 Core Specification |
Document Object Model (DOM) Level 2 Core Specification The definition of 'DOMImplementation.createDocumentType' in that specification. | Obsolete | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | Yes | 6 | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | ? |
DOMImplementation
interface it belongs to.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocumentType