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>