我正在尝试在sweet alert对话框中显示一个微调器,该对话框接近于Bootstrap模态对话框(http://jsfiddle.net/D6rD6/5/)

我能想到的最接近的东西是这样的:

SweetAlert.swal({
title: '<small>Import errors occurred !</small>',
text: '<i class="fa fa-spinner" aria-hidden="true"></i>',
html: true,
customClass: 'manual-upload-errors-swal-width'
});

如果这不可能,那么最近和最好的解决方案是什么?

最佳答案

不支持原始的甜蜜警报插件,建议您使用SweetAlert2插件。
迁移很简单,这是迁移指南:Migration from SweetAlert to SweetAlert2
在SweetAlert2中,有swal.showLoading(),因此您可以显示加载模态很简单:

Swal.fire('Please wait')
Swal.showLoading()
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>

09-25 15:12