任何人都知道如何解決這個問題。我有這段代碼在刪除文件時顯示bootbox.confirm,但它不起作用。Bootbox確認不起作用
$('#fileupload').fileupload({
destroy: function (e, data) {
var that = $(this).data('fileupload');
if (bootbox.confirm("Delete this file(s) ?") == true) {
if (data.url) {
$.ajax(data)
.success(function() {
$(this).fadeOut(function() {
$(this).remove();
});
});
} else {
data.context.fadeOut(function() {
$(this).remove();
});
}
}
}
});
'bootbox.confirm'是一個異步方法 - 你需要使用一個回調函數來處理它的結果。 – CBroe 2014-08-27 14:46:16
您是否檢查了控制檯的錯誤消息? – Cfreak 2014-08-27 14:46:18
感謝您的幫助 – 2014-08-27 16:09:31