我做了以下事情:
jQuery('.businessdirectory-category .wpbdp-rating-info').insertAfter('.businessdirectory-category .title');
.wpbdp-rating-info
后移动.title
。但是.wpbdp-rating-info
页面中有 3 个,所以现在每个.businessdirectory-category
有 3 个.wpbdp-rating-info
我该怎么做才能让每个.businessdirectory-category
人都有自己的 .wpbdp-rating-info appended to its own
.title`?
编辑:
我把它改成这样:
jQuery('.wpbdp-listing-excerpt .wpbdp-rating-info').each(function () {
var $this = jQuery(this);
$this.insertAfter($this.closest('.wpbdp-listing-excerpt').find('.title'));
});
但也没有用。