要素を指定したタグで囲うには、wrapを使用します。
サンプル2>
例)ボタンを押すと、要素をbタグで囲う
1234567891011121314151617181920
<!DOCTYPE html><html lang="ja"><head><meta charset="utf-8"><title>サンプル</title><script src="http://code.jquery.com/jquery-3.2.1.min.js"></script><script>$(function(){ $('#btn1').click(function(){ //bタグで囲う $("#dv1").wrap("<b></b>"); });});</script></head><body> <input type="button" id="btn1" value="ボタン"> <div id="dv1">hoge</div></body></html>
実行サンプル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#btn1').click(function(){ //bタグで囲う $("#dv1").wrap("<b></b>"); }); }); </script> </head> <body> <input type="button" id="btn1" value="ボタン"> <div id="dv1">hoge</div> </body> </html> |
↓動作確認ができます。
hoge
解説
- wrapで囲うタグは、開始タグと終了タグの両方を指定します。
- 要素を囲んでいるタグを追加するには、unwrapを使用します。
詳しくはこちらをご覧ください → 要素を囲んでいるタグを削除する(unwrap) - 指定した要素の内側で囲いたい場合は、wrapInnerを使用します。