1,wrap(htm) 可以将匹配对象包含在给出的html代码内
例如:
代码:
function jq(){
$("p").wrap("<div class='wrap'></div>");
}
//执行后
<div class='wrap'><p>Test Paragraph.</p></div>
2,wrap(elem) 可以将匹配对象包含在给出的对象内
例如:
代码:
function jq(){
$("p").wrap( document.getElementById('content') );
}
//执行后
<div id="content"><p>Test Paragraph.</p></div>