wrapInner()方法將指定的HTML元素包裹在每個選定元素的內(nèi)容周圍。
在內(nèi)容周圍包裹一個元素:
$(selector).wrapInner(wrappingElement)
使用函數(shù)將元素包裹在內(nèi)容周圍:
$(selector).wrapInner(function(index))
將<b>元素包裹在每個<p>元素的內(nèi)容周圍:
本示例使用document.createElement()創(chuàng)建一個<b>元素,并將其包裹在每個<p>元素的內(nèi)容周圍:
使用函數(shù)包裹內(nèi)容:
$("button").click(function(){ $("p").wrapInner(function(){ return document.createElement("b"); }); });測試看看?/?
參數(shù) | 描述 |
---|---|
wrappingElement | 指定包圍在每個被選元素的內(nèi)容周圍的 HTML 元素。 可能的值:
|
function(index) | 指定一個返回包裹元素的函數(shù)
|