jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Manipulation/API/jQuery

after(content)

各要素の後ろにコンテンツを挿入する。
引数
content
String,Element,jQuery
追加する文字列、DOM ElementおよびjQueryオブジェクト
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
指定HTMLを各p要素の後ろに追加。
<p>I would like to say: </p>
<p>I would like to say again: </p>
$("p").after("<b>Hello</b>");
[全コードを表示] [実行結果を単体で表示]