繁体   English   中英

如何在删除记录之前显示确认框

[英]How do I show a confirmation box before deleting a record

在执行此ajax请求之前,我需要显示一个确认框。

$(document).on("click", ".deletecustomer", function() {
    var id = $(this).attr("id");
    $.ajax({
        method: "post",
        url: "deletecustomer.php",
        data: {
            id: id
        },
        success: function(data) {
            console.log(data);
            if (data == "success") {
                window.location.href = "customer.php";
            }
        }
    });
});
$(document).on("click", ".deletecustomer", function() {
    if (confirm('Are you sure?')) {
        var id = $(this).attr("id");
        $.ajax({
            method: "post",
            url: "deletecustomer.php",
            data: {
                id: id
            },
            success: function(data) {
                console.log(data);
                if (data == "success") {
                    window.location.href = "customer.php";
                }
            }
        });
    }
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM