jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Manipulation/API/jQuery

wrapInner(elem)

各要素の子要素を、引数で渡された要素で囲む。
引数
elem
Element
DOM Element
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
各p要素の中身を、b要素で囲む。
<p>Hello</p>
<p>cruel</p>
<p>World</p>
$("p").wrapInner(document.createElement("b"));
[全コードを表示] [実行結果を単体で表示]