jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Manipulation/API/jQuery

replaceWith(content)

全ての要素を、指定されたHTMLやDOM Elementで置き換える。
引数
content
String, Element, jQuery
置き換えるHTML文字列やDOM Element
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
ボタンをクリックすると、その要素がdivに置き換わるようにする。
<button>First</button>
<button>Second</button>
<button>Third</button>
$("button").click(function () {
  $(this).replaceWith("<div>" + $(this).text() + "</div>");
});
[全コードを表示] [実行結果を単体で表示]