使用jQuery在其兄弟中移动元素

时间:2016-03-25 19:44:47

标签: jquery

我想在以下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'));
});

它似乎不起作用......我怎样才能完成它?

0 个答案:

没有答案