jQuery日本語リファレンス

jQuery does not mean Japanese Query...

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