我目前正在开发 Open Cart 1.5.4 中的一个项目。我将购物车轻微移动到另一个 div 中,没有任何问题。事情是在新电脑上,当他们第一次进入网站时,客户不可能将产品添加到购物车中。如果他们进入另一个页面然后返回它就可以了。javascript文件正确加载,没有任何问题。
希望这个解释很好地解释了问题或错误。
提前致谢。
JAVASCRIPT
function addToCart(product_id, quantity) {
quantity = typeof(quantity) != 'undefined' ? quantity : 1;
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: 'product_id=' + product_id + '&quantity=' + quantity,
dataType: 'json',
success: function(json) {
$('.success, .warning, .attention, .information, .error').remove();
if (json['redirect']) {
location = json['redirect'];
}
if (json['success']) {
//$('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');
$('.success').fadeIn('slow');
try {
$('#cart-total').html(json['total']);
}
catch(err) {
console.log(err.message());
}
$('html, body').animate({ scrollTop: 0 }, 'slow');
$(".heading").animate({backgroundColor: "#FFFFFF"}, 'slow');
$(".cart_arrow").attr("style", "display: block;");
$(".heading").animate({backgroundColor: "#585858"}, 'slow');
}
}
});
}