1)wrap(htm) 将匹配对象包含在给出的html代码内
<p>Test Paragraph.</p> <a href="#" onClick="jq()">jQuery</a>
jQuery代码及功能:
function jq(){
$("p").wrap("<div class='wrap'></div>");
}
$("p").wrap("<div class='wrap'></div>");
}
执行后相当于
<div class='wrap'><p>Test Paragraph.</p></div>
2)wrap(elem) 将匹配对象包含在给出的对象内
<p>Test Paragraph.</p><div id="content"></div>
<a href="#" onClick="jq()">jQuery</a>
<a href="#" onClick="jq()">jQuery</a>
jQuery代码及功能:
function jq(){
$("p").wrap( document.getElementById('content') );
}
$("p").wrap( document.getElementById('content') );
}
执行后相当于
<div id="content"><p>Test Paragraph.</p></div>