甜蜜警报2-“ confirmButtonText”按钮中的链接

时间:2019-02-25 02:16:54

标签: php html sweetalert sweetalert2

我想知道如何在生成confirmButtonText的{​​{1}}的按钮中放置一个链接。

目标是,当您按下该按钮时,重定向到从数据库中删除记录的页面,直到现在,我在一个简单按钮中都带有一个简单链接(Sweet Alert 2),但是我想添加这个小确认。

代码如下:

The code

按钮如下:

The button

4 个答案:

答案 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'
 )
}
})

更多,请检查:https://sweetalert2.github.io/

答案 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>`
    });