目前,这是我用来运行基于“确认”类的正常确认窗口的代码。这一切都是通过 href 链接完成的,而不是在按钮 onClick 事件上完成的。由于单击的结果是运行另一个放置在不同文件中的代码(目的是删除 db 中的一行)。
$('.confirmation').on('click', function () {
return confirm('Er du sikker på at du vil slette?');
});
我想要的是用这个 SweetAlert 函数替换确认方法
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
closeOnConfirm: false
}, function(){
swal("Deleted!", "Your imaginary file has been deleted.", "success");
});
任何人都知道如何做到这一点,当我尝试将 sweetalert 放在 onClick 函数中时会发生什么是警报出现但它会自动删除该行而无需我确认任何内容并且警报淡出。