我想知道如何在生成confirmButtonText
的{{1}}的按钮中放置一个链接。
目标是,当您按下该按钮时,重定向到从数据库中删除记录的页面,直到现在,我在一个简单按钮中都带有一个简单链接(Sweet Alert 2
),但是我想添加这个小确认。
代码如下:
按钮如下:
答案 0 :(得分:1)
您可以在有希望的预警中使用有前途的东西
Swal.fire({
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!'
}).then((result) => {
if (result.value) {
Swal.fire(
'Deleted!',
'Your file has been deleted.',
'success'
)
}
})
答案 1 :(得分:1)
这可以工作!
confirmButtonText: '<a href="url">LINK</a>'
答案 2 :(得分:0)
我所做的是将一个函数附加到使用window.href来跟随链接的确认按钮:
@Query("SELECT * FROM task_table WHERE id = :id")
fun getTask(id: Int): Task
答案 3 :(得分:0)
我认为我为时已晚,无法响应查询,但这可能会对其他搜索相似内容的人有所帮助。
Swal.fire({
title: '<strong>Check Redirect!!</strong>',
icon: 'success',
showConfirmButton: false,
allowOutsideClick: false,
footer:`<a class="btn btn-primary" href="https://www.google.com">OK</a>`
});