1)wrap(htm) 将匹配对象包含在给出的html代码内

<p>Test Paragraph.</p> <href="#" onClick="jq()">jQuery</a>


jQuery代码及功能:

function jq(){ 
      $(
"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>
<href="#" onClick="jq()">jQuery</a>


jQuery代码及功能:

function jq(){ 
      $(
"p").wrap( document.getElementById('content') );
}


执行后相当于

<div id="content"><p>Test Paragraph.</p></div>

 

posted on 2009-10-19 00:05  钱途无梁  阅读(773)  评论(0编辑  收藏  举报