Manipulation/API/jQuery
before(content)
各要素の前にコンテンツを挿入する。
- content
- String,Element,jQuery追加する文字列、DOM ElementおよびjQueryオブジェクト
引数
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
指定HTMLを各p要素の前に追加。
<p> is what I said...</p> <p> is what you said too...</p>
$("p").before("<b>Hello</b>");
[全コードを表示]
[実行結果を単体で表示]