DOMImplementation.createDocumentType()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

La méthode DOMImplementation.createDocumentType() renvoie un objet DocumentType qui peut être utilisé avec DOMImplementation.createDocument lors de la création du document ou peut être intégré au document existant avec des méthodes comme Node.insertBefore() ou Node.replaceChild().

Syntaxe

js
doctype = document.implementation.createDocumentType(
  qualifiedNameStr,
  publicId,
  systemId,
);

Paramètres

qualifiedNameStr

est une DOMString (chaîne de caractères) contenant le nom qualifié comme svg:svg.

publicId

est une DOMString (chaîne de caractères) contenant l'identifiant PUBLIC.

systemId

est une DOMString (chaîne de caractères) contenant les identifiants SYSTEM.

Exemple

js
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

Spécifications

Specification
DOM Standard
# ref-for-dom-domimplementation-createdocumenttype①

Compatibilité des navigateurs

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
createDocumentType

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

Voir aussi