作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试为我的模式添加一个额外的类,以便我可以从 LESS 中选择它并将它的背景变为透明。但是 customClass 不起作用。有没有其他方法可以做到。顺便说一句,我已经对默认类进行了很多更改,因此我只需要为一个模态执行此操作,不会影响全局 swal。
swal({
title: success,
showConfirmButton: false,
html: true,
customClass: ".swal-back"
});
最佳答案
假设 OP 使用 SweetAlert2 ,
customClass 已从字符串更改为对象。
它需要一个对象,如下所示:
customClass: {
container: 'your-container-class',
popup: 'your-popup-class',
header: 'your-header-class',
title: 'your-title-class',
closeButton: 'your-close-button-class',
icon: 'your-icon-class',
image: 'your-image-class',
content: 'your-content-class',
input: 'your-input-class',
actions: 'your-actions-class',
confirmButton: 'your-confirm-button-class',
cancelButton: 'your-cancel-button-class',
footer: 'your-footer-class'
}
撰写本文时文档中的官方行 here
另一方面,使用 8.12.2 之前的版本时要小心并接近它,因为那里有一个与自定义类相关的已知错误。
与主题相关的问题here
关于javascript - 将类(class)添加到甜蜜警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48985966/
我是一名优秀的程序员,十分优秀!