特效部分
swal({
title: "你确定?",
text: "你将无法恢复这个虚构的文件!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "删除",
cancelButtonText: "取消",
closeOnConfirm: false,
closeOnCancel: false,
},
function (data) {
if (data) {
swal("删除", "您的虚构文件已被删除.", "success");
} else {
swal("取消", "你的虚构文件是安全的:)", "error");
}
});
ajax部分$.ajax({
url : url,
type : "post",
dataType : "json",
data : {hmid:hmid},
success : function(data) {
}
}); 最佳答案