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>"); });
[全コードを表示]
[実行結果を単体で表示]