-39%
Price range: $7.90 through $19.60
jQuery(document).ready(function($) { $('body').on('adding_to_cart', function(e, button, data) { if(button) { button.addClass('loading'); } }); $('body').on('added_to_cart', function(e, fragments, cart_hash, button) { if(button) { button.removeClass('loading'); // 强制刷新小购物车 $(document.body).trigger('wc_fragment_refresh'); } }); });