我正在使用 Magento Shopper 主题 ( http://shopper.queldorei.com/ )。
当我将产品添加到我的购物车时,它会添加多个元素
<div class="cart-top-title">
<a href="https://droppinstudio.dk/horsepony/index.php/checkout/cart/" class="clearfix">
<span class="icon"></span>Cart</a></div>
我发现是 jQuery 在这里犯了错误:
function setLocationAjax(url, id)
{
...
if (data.status != 'ERROR' && $('.cart-top-container').length) {
$('.cart-top-container').replaceWith(data.cart_top);
}
...
}
有没有人知道如何解决这个问题?