多选框 点击全选时全选,点击全部单选时,全选

全选
<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');
});
posted @ 2022-03-11 15:52  佛系时常  阅读(90)  评论(0)    收藏  举报