layer实现删除确认及操作完成后弹出提醒,然后刷新本页面

来源:互联网 发布:红馆 知乎 编辑:程序博客网 时间:2024/05/01 02:57
layer.confirm("确认要删除吗,删除后不能恢复", { title: "删除确认" }, function (index) {                layer.close(index);                $.post("/admin/customer/DeleteCustomer", { gid: $(e.currentTarget).data("gid") }, function (data) {                    layer.alert(data, {                        title: "删除操作",                        btn: ['确定']                    },                        function (index, item) {                            //layer.close(index);                            location.reload();                        });                });            }); 

阅读全文
0 0