全选
<input type="checkbox" lay-filter="checkall" name="" lay-skin="primary" class="chkAll">
单选
<input type="checkbox" name="" lay-filter="chk" lay-skin="primary" class="chk">
// 监听全选
form.on('checkbox(checkall)', function(data){
if(data.elem.checked){
$('tbody input').prop('checked',true);
}else{
$('tbody input').prop('checked',false);
}
form.render('checkbox');
});
// 监听单选
form.on('checkbox(chk)', function (data) {
if (data.elem.checked){
if($(".chk:checked").length == $(".chk").length){
$('.chkAll').prop('checked', true);
}
} else{
$('.chkAll').prop('checked', false);
}
form.render('checkbox');
});