jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Manipulation/API/jQuery

wrap(elem)

指定要素を、実行要素で囲む。
例えば $(A).wrap(B) であれば、A要素をB要素で囲む。
引数
elem
Element
DOM Element
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
p要素をidが”content”の要素で囲む。
<p>Test Paragraph.</p><div id="content"></div>
$("p").wrap($('#content'));
[全コードを表示] [実行結果を単体で表示]