出于某种原因,以下代码对我来说并不适用,即使它看起来与我在网上找到的非常相似。我想要一个甜蜜的警报弹出,然后当用户点击确认按钮时,我希望脚本将它们发送回主页。但是,这只是显示甜蜜的警报,并且不会在关闭时重定向它们。另请注意Sweet Alert已正确安装。这是我的代码:
swal({
title: 'Signed Up!',
html: 'Thank you for registering',
type: 'success',
confirmButtonText: 'Got it!'
}, function () {
window.location.href = "index.php";
});
答案 0 :(得分:0)
swal({
title: 'Signed Up!',
html: 'Thank you for registering',
type: 'success',
confirmButtonText: 'Got it!'
}).then(function () {
window.location.href = "index.php";
}, function (dismiss) {
// dismiss can be 'cancel', 'overlay',
// 'close', and 'timer'
if (dismiss === 'cancel') {
window.location.href = "cancel.php";
}
});
我没有对此进行测试,但文档说这可行。 https://sweetalert2.github.io/