前台
$("#Checkbox1").click(function () {
$("input[type='checkbox']").prop("checked", this.checked);
})
function pi() {
var id="";
$("input[type='checkbox']:checked").each(function () {
id += $(this).val() + ",";
})
id = id.substring(0, id.length - 1);
$.ajax({
url: "/show/shan",
type: "post",
data: { id: id },
dataType: "json",
success: function (data) {
if (data > 0) {
alert("删除成功");
location.href = '/show/Index';
}
else {
alert("删除失败");
}
}
})
}