我目前正在使用SweetAlert,虽然我们正在愉快地开发它,但我们遇到的情况是它没有削减它。
当用户在页面上完成某些操作时,会弹出对话框。一切都好。但我们希望将后面的页面重定向到另一个页面,其中刷新将破坏警报框。
有没有可以做到这一点并提供类似功能的解决方案?
以下是调出SA盒的代码:
$('#button-cart').bind('click', function() {
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: $('.product-info input[type=\'text\'], .product-info input[type=\'hidden\'], .product-info input[type=\'radio\']:checked, .product-info input[type=\'checkbox\']:checked, .product-info select, .product-info textarea'),
dataType: 'json',
success: function(json) {
$('.success, .warning, .attention, information, .error').remove();
if (json['error']) {
if (json['error']['option']) {
for (i in json['error']['option']) {
$('#option-' + i).after('<span class="error">' + json['error']['option'][i] + '</span>');
}
}
if (json['error']['profile']) {
$('select[name="profile_id"]').after('<span class="error">' + json['error']['profile'] + '</span>');
}
}
if (json['success']) {
swal({
title: "Success!",
text: json['success'],
type: "success",
confirmButtonText: "Cool",
confirmButtonColor: "1bbc9b",
html: true
});
$('.success').fadeIn('slow');
$('#cart-total').html(json['total']);
$('#cart-total', window.parent.document ).html(json['total']);
$('html, body').animate({ scrollTop: 0 }, 'slow');
}
}
});
});
在后端,控制器会在单击“添加到购物车”按钮后将Web浏览器重定向到“购物车摘要”页面。这是自定义代码更改。