gpt4 book ai didi

jquery - 即使在 JQuery 中传递参数后,Sweetalert 也不会更改按钮颜色

转载 作者:行者123 更新时间:2023-12-01 04:00:24 24 4
gpt4 key购买 nike

这就是我使用 JQuery 调用甜蜜警报的方式:

swal({
buttonColor: '#000000',
title: "Error!",
text: "Please Enter Following Fields it Cannot be Left Blank\n ------------------------ \n"+fieldCheck,
type: "error"
});

但是,当使用“确定”按钮显示警报时,它的颜色主要是蓝色,不会改变。

我也尝试添加一个类,但我无法弄清楚如何应用一个类。

最佳答案

如果您使用SweetAlert2你需要改变:

buttonColor: '#000000',

至:

confirmButtonColor: '#000000',

另一种方法是直接设置按钮的样式:

.swal2-confirm {
font-family: "Times New Roman", Times, serif !important;
font-size: 30px !important;
background-color: #000000 !important;
border-left-color: #000000 !important;
border-right-color: #000000 !important;
}

var fieldCheck = '';
swal({
confirmButtonColor: '#000000',
title: "Error!",
text: "Please Enter Following Fields it Cannot be Left Blank\n ------------------------ \n"+fieldCheck,
type: "error"
});
.swal2-confirm {
font-family: "Times New Roman", Times, serif !important;
font-size: 30px !important;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.9.1/sweetalert2.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.9.1/sweetalert2.min.js"></script>

关于jquery - 即使在 JQuery 中传递参数后,Sweetalert 也不会更改按钮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46497373/

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