前台

$("#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("删除失败");
}
}


})
}

posted on 2017-11-23 11:52  过客s  阅读(160)  评论(0编辑  收藏  举报