如果元素出现在课程之前或之后,我会尝试将它们包装p
在单个元素中。目前,我只能环绕每个单独的元素。div
.image
这是我的CSS:
<ul>
<p>this is the first paragraph</p>
<p>this is the second paragraph</p>
<div class="image"></div>
<div class="image"></div>
<p>this is the third paragraph</p>
<p>this is the fourth paragraph</p>
</ul>
和我的 jQuery:
$('p').wrap('<div class="new" />');
$('.image').wrap('<li />');
这是我的 JSFIDDLE:http: //jsfiddle.net/BDqGe/
有人知道如何根据兄弟姐妹包装元素吗?