DocumentType: replaceWith() メソッド

DocumentType.replaceWith() メソッドは、文書型宣言を指定されたノードで置き換えます。

構文

js
replaceWith(node1)
replaceWith(node1, node2)
replaceWith(node1, node2, /* … ,*/ nodeN)

引数

node1, …, nodeN

この DocumentType を置き換える一連のノードです。

返値

なし (undefined)。

例外

HierarchyRequestError DOMException

ノードが階層内の指定された位置に挿入できない場合に発生します。

replaceWith() の使用

js
let svg_dt = document.implementation.createDocumentType(
  "svg:svg",
  "-//W3C//DTD SVG 1.1//EN",
  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd",
);

document.doctype.replaceWith(svg_dt);

仕様書

Specification
DOM Standard
# ref-for-dom-childnode-replacewith①

ブラウザーの互換性

BCD tables only load in the browser

関連情報