Bootstrap 模态隐藏在 Laravel 7 下不工作
Bootstrap Modal Hide is not working at Laravel 7
我尝试在上传数据成功后点击"ok"关闭自动大写,但是点击"ok"大写不关闭/隐藏
这是我的刀
complete:function(res){
console.log(res);
if(res.responseJSON !== undefined){
if(res.responseJSON.status === true){
table.ajax.reload();
Swal.fire({
title:'Success',
text:res.responseJSON.messages,
icon:'success'
}).then((done)=>{
if (done) {
resetForm()
$("my-modal").modal("hide")
table.ajax.reload();
}
})
} else {
你可以尝试更换
$("my-modal").modal("hide");
经过
$("#my-modal").modal("toggle");
我尝试在上传数据成功后点击"ok"关闭自动大写,但是点击"ok"大写不关闭/隐藏
这是我的刀
complete:function(res){
console.log(res);
if(res.responseJSON !== undefined){
if(res.responseJSON.status === true){
table.ajax.reload();
Swal.fire({
title:'Success',
text:res.responseJSON.messages,
icon:'success'
}).then((done)=>{
if (done) {
resetForm()
$("my-modal").modal("hide")
table.ajax.reload();
}
})
} else {
你可以尝试更换
$("my-modal").modal("hide");
经过
$("#my-modal").modal("toggle");