Bootbox警报不在焦点上

时间:2018-01-22 17:57:11

标签: javascript jquery asp.net-mvc asp.net-mvc-5 bootbox

我正在调用bootbox confirm函数,但它不是焦点。我的所有页面都会获得此灰色效果,包括引导程序窗口。我做错了什么?

bootbox problem

以下是我调用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()
                    });
                }
            });
        });

0 个答案:

没有答案