我有一个关于 javascript 的问题。我有一个购物车和一个从该购物车中删除产品的功能。购物车为空时如何重定向到主页?
这是我的功能删除产品。
function removeCart(key) {
$.ajax({
url: 'index.php?route=checkout/cart/update',
type: 'post',
data: 'remove=' + key,
dataType: 'json',
success: function(json) {
$('.success, .warning, .attention, .information').remove();
if (json['output']) {
$('#cart_total').html(json['total']);
$("table.total tr:last td:last").text(json['total'].split('-')[1]);
$('#cart .content').html(json['output']);
}
}
});
}