# :-: 第一部加载js件 https://www.bootcdn.cn/sweetalert/ # :-: js回调成功代码 ~~~ function del(id) { swal({ title: "确定删除吗?", text: "你将无法回复该用户,点击空白区,取消选框", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55", confirmButtonText: "确定删除!", cancelButtonText: "取消删除!", closeOnConfirm: false, closeOnCancel: false }).then( function(isConfirm){ if (isConfirm) { //或者id ,传递给后台 window.location.href = "/admin/user/delete/id/"+id } else { swal("取消!", "你的用户删除结束)", "error"); } }); } ~~~ # :-: 简单成功弹框 ``` swal({ text: data.message, icon: "success", button: false }); ``` # :-: 失败弹框 ``` swal({ text: data.message, icon: "warning", button: false }); ```