要素の後ろにタグを追加するには、afterを使います。 サンプル 例)ボタンを押すと、要素の後にxyzを追加する <!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(){ //要素の後ろにタグを追加する $("#a1").after("<b>xyz</b>"); }); }); </script> </head> <body> <input type="button" id="btn1" value="ボタン"> <div id="a1"><s