我想将我的警报框更改为 Sweet Alert2 ( https://sweetalert2.github.io/ )。单击确认警报窗口上的“确定”按钮后,似乎没有任何反应。我似乎无法弄清楚出了什么问题或如何解决问题。我的代码如下:
html:
<a href="functionalities/removeIncoming.php?incId=<?php echo $incID; ?>">
<button type="button" class="btn btn-default" id="delBtn" onclick="validateRemove(event);">
<span class="glyphicon glyphicon-book" aria-hidden="true"></span>
</button>
</a>
Javascript:
function validateRemove(e) {
e.preventDefault();
swal({
title: "Are you sure you want to archive this entry?",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes',
cancelButtonText: "No"
}).then(function () {
swal(
'Archived',
'Your file has been Archived.',
'success'
)
})
}