我目前正在使用sweetalert2,並試圖檢測警報何時關閉。但是DeleteUnsavedImages函數不會觸發。我認爲將函數分配給onclose鍵可行,但沒有運氣。如何監聽甜蜜警報關閉
swal({
html: data,
showCloseButton: false,
showCancelButton: false,
width: 800,
showConfirmButton: false,
onClose: DeleteUnsavedImages()
}).then(function() {
});
function DeleteUnsavedImages(){
var test = "-1";
}
:-)
嘗試刪除(),'的OnClose:DeleteUnsavedImages' –
工作!謝謝。 –
哦,@BoyWithSilverWings在評論中給出瞭解決方案。酷... –