ligerui全选删除功能

2019-01-02 20:15发布

问题:

ligerui全选删除功能怎么写,求大佬支招

回答1:

看ligerui官网demo查看源码



回答2:

这个自己写js就可以了

第一步选中所有复选框,并且数组记录所有id
$(function () {
   var CustomerIDArray=[]; 
                $(".checkBoxClass").click(function (e) {
$('#tblEmailScheduler').find('input[type="checkbox"]').each(function (i,item) {
                        if($(item).prop('checked'))
                            CustomerIDArray.push(item.Id);
                        alert(item.id);
                        if($(item).prop('unchecked'))
                          CustomerIDArray.slice(item.Id);
                        alert(item.id);
                    });
                });
            });

第二步点击删除按钮,传递数组id到后台,执行删除操作
var ids=CustomerIDArray.join('-')
ajax 调用后台接口,传递ids


标签: