gpt4 book ai didi

javascript - SweetAlert - 改变按钮的颜色

转载 作者:可可西里 更新时间:2023-11-01 02:14:38 28 4
gpt4 key购买 nike

我正在尝试像更改确认按钮一样更改取消按钮的颜色,但由于某种原因它似乎不起作用。

swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: "warning",
showCancelButton: true,
cancelButtonColor: "#DD6B55",
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: "No, cancel please!",
closeOnConfirm: false,
closeOnCancel: false
}, function (isConfirm) {
if (isConfirm) {
swal("Deleted!", "Your imaginary file has been deleted.", "success");
} else {
swal("Cancelled", "Your imaginary file is safe :)", "error");
}
});

最佳答案

您正在使用此版本的 SweetAlert:https://github.com/t4t5/sweetalert而在源 JS 文件 ( https://t4t5.github.io/sweetalert/dist/sweetalert-dev.js ) 中,没有这样的参数来更改取消按钮的颜色。

在您使用的文件中,参数是:

var defaultParams = {
title: '',
text: '',
type: null,
allowOutsideClick: false,
showConfirmButton: true,
showCancelButton: false,
closeOnConfirm: true,
closeOnCancel: true,
confirmButtonText: 'OK',
confirmButtonColor: '#8CD4F5',
cancelButtonText: 'Cancel',
imageUrl: null,
imageSize: null,
timer: null,
customClass: '',
html: false,
animation: true,
allowEscapeKey: true,
inputType: 'text',
inputPlaceholder: '',
inputValue: '',
showLoaderOnConfirm: false
};

我可以建议您使用此版本的 SweetAlert:https://github.com/limonte/sweetalert2此处存在更改取消按钮颜色的选项。

您可以修改第一个 JS 文件的源代码,但是在第二个版本中它很容易获得。

始终可以使用 CSS 修改按钮颜色的选项。但是如果你想使用 JS 来定制它,那么 SweetAlert2 是一个更好的选择。

关于javascript - SweetAlert - 改变按钮的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39837028/

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