我在我的项目中使用SweetAlert2。我正在我的甜蜜警报输入类型文本中填充一个文本字段。我需要在提交之前使用任何正则表达式检查它,如果它成功,它应该运行该函数,否则它应该显示一条错误消息。
swal({
title: 'Edit Breakdown Variable',
input: 'text',
inputValue: name,
showCancelButton: true,
confirmButtonText: 'Update',
}).then(function (email) {
if(email == ''){
alert('err');
}
});
如果有错误,则会显示警报,但弹出窗口会在其后消失。有没有人遇到过这样的问题?