我正在调用bootbox confirm函数,但它不是焦点。我的所有页面都会获得此灰色效果,包括引导程序窗口。我做错了什么?
以下是我调用bootbox确认功能的方法:
$(".js-delete").on("click", function () {
var tr = $(this).closest('tr');
var button = $(this);
bootbox.confirm("Você tem certeza que deseja deletar esse registro de cliente?", function (result) {
if (result) {
$.ajax({
type: "POST",
url: "@Url.Action("Delete","Customers")",
ajaxasync: true,
data: { id: button.attr("customer-id") },
success: tr.remove()
});
}
});
});