Document: doctype プロパティ

doctypeDocument インターフェイスの読み取り専用プロパティで、現在の文書に関連付けられた Document Type Declaration (DTD) を表す DocumentType オブジェクトです。

DocumentType オブジェクトです。

js
const doctypeObj = document.doctype;

console.log(`doctypeObj.name: ${doctypeObj.name}`);
console.log(`doctypeObj.internalSubset: ${doctypeObj.internalSubset}`);
console.log(`doctypeObj.publicId: ${doctypeObj.publicId}`);
console.log(`doctypeObj.systemId: ${doctypeObj.systemId}`);

メモ

現在の文書に関連付けられている DTD が存在しないは null が返されます。

DOM レベル 2 では、文書型宣言の編集に対応していません。

仕様書

Specification
DOM Standard
# ref-for-dom-document-doctype①

ブラウザーの互換性

BCD tables only load in the browser