我想在以下html中的“p”元素中移动图像:
<div class="entery-post-excerpts">
<p>content1</p>
<a href="#" class="alignrightthumb"><img width="210" height="158" src="http://imageurl"></a>
</div>
结果:
<div class="entery-post-excerpts">
<p>content1<a href="#" class="alignrightthumb"><img width="210" height="158" src="http://imageurl"></a></p>
</div>
我尝试了以下脚本:
$('.alignrightthumb').each(function() {
$(this).appendTo($(this).parent().chidlren('p:first-child'));
});
OR
$('.alignrightthumb').each(function() {
$(this).appendTo($(this).siblings('p'));
});
它似乎不起作用......我怎样才能完成它?