0

我正在使用博客,并希望将类别移动到每个帖子列表的标题上方。当我使用以下代码时,我得到了第一类的 50 个克隆。我想我需要使用的 index 参数,.each()但我不确定。这是我的代码:

jQuery(document).ready(function(){
    jQuery(".blog-category").each(function(){
        jQuery(this).insertBefore( jQuery(".blog-head") ) ;
    });
});

本质上,我正在尝试插入

.blog-category

之前

.blog-head

在每个帖子上。

HTML

<div id="entry-2839">
    <div class="blog-post-in">
        <div class="blog-head">content</div>
        <div class="blog-side">
            <div class="blog-category">more content</div>
        </div>
    </div>
</div>
4

1 回答 1

3

这应该可以解决问题:

var e = jQuery(this);
e.closest(".blog-post-in").prepend(e);
于 2013-08-26T17:06:32.510 回答