指定した要素を別の要素に置き換えるには、.replaceWith() を使用します。
構文
- (構文)
- .replaceWith(<置き換える要素>)
サンプルソース
例)ボタンを押すと、テキストボックスをpタグに変更する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>Test</title> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#btn1').click(function(){ $('#txt1').replaceWith("<p>" + $('#txt1').val() + "</p>"); }); }); </script> </head> <body> <input type="text" id="txt1" value="abc"><br> <input type="button" id="btn1" value="ボタン"> </body> </html> |
解説
- 引数を指定しないと、対象要素は消えます。
- 指定したセレクタに合致する要素が複数存在する場合は、全ての要素が置き換わります。