//刪除
function del() {
var id = "";
var row = $.map($("#DataList").bootstrapTable('getSelections'), function (row) {
id = row.Id;
return row;
});
if (row == null || row.length <= 0) {
swal("提示信息", "請選擇要刪除的記錄!", IconMsg.WARNING);
return false;
}
swal({
title: "確定刪除選中的記錄?",
text: "刪除之后無法恢復該數據!",
type: IconMsg.WARNING,
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "確定",
closeOnConfirm: false
},
function () {
$.ajax({
type: 'post',
url: '/Users/DelUserById',
dataType: "json",
data: { id: id },
success: function (data) {
if (data.Result) {
$("#DataList").bootstrapTable('refresh');
swal("提示信息", data.Msg, data.IconMsg);
} else {
swal("提示信息", data.Msg, data.IconMsg);
}
}
});
});
前台頁面上顯示:
closeOnConfirm: false / true
關閉確認