CharacterData: replaceWith() メソッド
replaceWith()
は CharacterData
インターフェイスのメソッドで、親ノードの子リスト内にあるこのノードを、一連の Node
オブジェクトまたは文字列で置き換えます。
構文
js
replaceWith(nodes)
引数
返値
なし (undefined
)。
例外
HierarchyRequestError
DOMException
-
ノードが階層内の指定された位置に挿入できない場合に発生します。
例
html
<p id="myText">Some text</p>
js
let text = document.getElementById("myText").firstChild;
let em = document.createElement("em");
em.textContent = "Italic text";
text.replaceWith(em); // `Some text` を `Italic text` で置き換える
仕様書
Specification |
---|
DOM Standard # ref-for-dom-childnode-replacewith① |
ブラウザーの互換性
BCD tables only load in the browser