最好的确认对话框javascript库

时间:2017-12-20 08:37:05

标签: java jquery notifications dialog confirm

我想使用一个看起来比本机浏览器confirm对话框更好的确认对话框。我尝试了toastr,但发现使用No / Yes按钮实现confirm功能有点棘手。它仍然需要维护和更新。

感谢所有建议!

2 个答案:

答案 0 :(得分:2)

试试jquery-confirm。他们有各种各样的设计。

答案 1 :(得分:2)

我认为最美丽的API之一就是SweetAlert:

https://limonte.github.io/sweetalert2/

您可以按以下方式设置对话框:

swal({
    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(
        'Deleted!',
        'Your file has been deleted.',
        'success'
        )
    }
})

以下是这样的:

enter image description here

您甚至可以自定义css以使其适应您的项目颜色。

希望这有帮助!