Manipulation/API/jQuery
prepend(content)
引数で指定したコンテンツを各要素の先頭に挿入する。
- contents
- String,Element,jQuery追加する文字列、DOM ElementおよびjQueryオブジェクト
引数
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
全てのp要素内の先頭に、”Hello”を太字で挿入します。
<p>there friend!</p> <p>amigo!</p>
$("p").prepend("<b>Hello </b>");
[全コードを表示]
[実行結果を単体で表示]