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