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']);
}
}
});
}