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

时间:2018-05-16
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();
                        });
                });
            }); 

上一条:关于layui上传图片提示 ‘请求上传接口出现异常’的处理办法 下一条:layui里的上传控件问题

相关文章

最新文章