码迷,mamicode.com
首页 > 其他好文 > 详细

PLSC

时间:2018-07-29 21:18:45      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:fun   data   nbsp   new   url   ESS   checked   全选   this   

  <th>全选<input id="ckAll" type="checkbox"  onclick="QuanXuan()"/></th>

  <td><input class="ckc" type="checkbox"  value="@item.PId"/></td>

<script>
//全选
function QuanXuan()
{
$(".ckc").prop("checked",$("#ckAll").prop("checked"))
}
//批量删除
function PLDelete()
{
var arry = new Array();
$(".ckc:checked").each(function () {
arry.push(this.value);
})

if (confirm("确定要删除吗?"))
{
$.ajax({
url: "/ErShi/PLDelete/"+arry.toString(),
type: "post",
success: function (data)
{
if (data>0) {
alert("删除成功!");
location.href = "/ErShi/Index";
}
}
})
}
}
</script>

PLSC

标签:fun   data   nbsp   new   url   ESS   checked   全选   this   

原文地址:https://www.cnblogs.com/xiaochao1996/p/9387523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!