简体   繁体   中英

jQuery append to a sibling div

I have the following code which moves an element inside another one using jquery but I need to target just the wrapper that is the sibling of the element instead of all the wrappers.

$('.add_to_cart_button').appendTo('.product-box-image-wrapper');

Heres the markup :

<li class="post-2045 product type-product status-publish has-post-thumbnail product_cat-accessories product_cat-designer-boots product_cat-footwear product_cat-shorts product_tag-boots product_tag-deluxe last instock featured shipping-taxable purchasable product-type-simple">
<a href="http://localhost:8888/majestica/product/evening-black-night-skirt/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><div class="product-box-image-wrapper"><img width="300" height="375" src="http://localhost:8888/majestica/wp-content/uploads/2018/08/kristina-dam-studio-aw17-collection-9-300x375.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wp-post-image" alt=""></div><h2 class="woocommerce-loop-product__title">Evening Black Night Skirt</h2>
<span class="price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">£</span>550.00</span></span>

Any ideas ?

Thanks.

One option is:

$('.add_to_cart_button').each(function() {
   $(this).prev('a.woocommerce-LoopProduct-link').children('.product-box-image-wrapper').append(this);
});

A less efficient option is:

$(this).closest('li').find('.product-box-image-wrapper').append(this);   

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM