gpt4 book ai didi

javascript - Bootbox 确认不工作

转载 作者:行者123 更新时间:2023-11-29 21:57:42 24 4
gpt4 key购买 nike

任何人都知道如何解决这个问题。我有这段代码在删除文件时显示 bootbox.confirm,但它不起作用。

$('#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 方法不像本地方法那样工作:

bootbox.confirm("Delete this file(s) ?", function(answer) {
if (!answer) return; // User said "no"

if (data.url) {
$.ajax(data)
.success(function () {
$(this).fadeOut(function () {
$(this).remove();
});
});
} else {
data.context.fadeOut(function () {
$(this).remove();
});
}
}

关于javascript - Bootbox 确认不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25530209/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com