使用jQuery为所有blockquote元素添加div标签

时间:2011-08-27 02:41:52

标签: javascript jquery

html:

 <blockquote>
test,test
</blockquote>

<p>test tow</p>
 <blockquote>
test2,test3
</blockquote>

我想通过jQuery将html改为:

      <div class="quote">
     <blockquote>
    test,test
    </blockquote>
   </div>

    <p>test tow</p>
  <div class="quote">
     <blockquote>
    test2,test3
    </blockquote>
</div>

1 个答案:

答案 0 :(得分:2)

使用jQuery wrap方法

$("blockquote").wrap('<div class="quote" />');