所以我想使用 sweetalert2 重定向到,例如使用 ?ID= 的内容删除.php。我该如何放入东西?这是我的代码。第一个是在 php echo html 中,这样我就可以输入 sql 数据库中的所有内容。
echo'
<td style="text-align: center;"> <div class="btn-group dropup">
<button class="btn btn-info dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Action
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="edit_form.php?ID='.$operatives['ID'].'">Edit</a>
<a class="dropdown-item red" onclick="oof("'.$operatives['ID'].'")" href="#">Purge</a>
</div>
</div> </td>'
这是 sweetalert2 代码
<script>
function oof(id){
var MyId = id;
Swal.fire({
title: 'Are you sure?',
text: "You will be purging this person's account.",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#d33',
cancelButtonColor: '#3085d6',
confirmButtonText: 'Yes, purge account'
}).then((result) => {
if (result.value) {
window.location = "deleting.php?ID="+MyId;
}
})
}
</script>
假设ID是4,如果可能的话,我希望它可以重定向到deleting.php?ID=4。谢谢你!
是否可以从 GET 信息激活 sweetalert2?如何激活?
牧羊人nacy