gpt4 book ai didi

javascript - 带有 href 的 Sweet Alert 删除确认

转载 作者:行者123 更新时间:2023-11-30 14:10:12 25 4
gpt4 key购买 nike

我正在使用 PHP,并使用 Sweet alert 进行删除确认。问题是它在显示甜蜜警报之前正在删除。

这是我的 HTML(其中使用了 PHP)。

<div class="delete"><a onclick="return confirmation()" href="'.URLROOT.'/dashboards/delete_note/'.htmlspecialchars($note->note_id).'/'.$data['table'] .'"><i class="far fa-trash-alt"></i></a></div>

这是我的甜蜜提醒

function confirmation() {
swal({
title: "Are you sure?",
text: "Once deleted, you will not be able to recover this imaginary file!",
icon: "warning",
buttons: true,
dangerMode: true,
})
.then((willDelete) => {
if (willDelete) {
swal("Poof! Your imaginary file has been deleted!", {
icon: "success",
});
} else {
swal("Your imaginary file is safe!");
}
});

问题是,它没有显示甜蜜警报,它只是直接转到 URL。我是否需要做一个表格并防止提交或类似的东西?

最佳答案

问题是点击 anchor 元素有一个默认行为。您可以使用 event.preventDefault() 来阻止重定向,并根据您使用 window.location.href='url'

的逻辑手动导航
<div class="delete">
<a onclick="confirmation(event)" href="'.URLROOT.'/dashboards/delete_note/'.htmlspecialchars($note->note_id).'/'.$data['table'] .'">
<i class="far fa-trash-alt"></i>
</a>
</div>

在 js 中

function confirmation(ev) {
ev.preventDefault();
var urlToRedirect = ev.currentTarget.getAttribute('href'); //use currentTarget because the click may be on the nested i tag and not a tag causing the href to be empty
console.log(urlToRedirect); // verify if this is the right URL
swal({
title: "Are you sure?",
text: "Once deleted, you will not be able to recover this imaginary file!",
icon: "warning",
buttons: true,
dangerMode: true,
})
.then((willDelete) => {
// redirect with javascript here as per your logic after showing the alert using the urlToRedirect value
if (willDelete) {
swal("Poof! Your imaginary file has been deleted!", {
icon: "success",
});
} else {
swal("Your imaginary file is safe!");
}
});
}

关于javascript - 带有 href 的 Sweet Alert 删除确认,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54603673/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com