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

layui默认选中table的CheckBox复选框

时间:2020-11-04 18:51:21      阅读:32      评论:0      收藏:0      [点我收藏+]

标签:log   登录   target   inpu   tps   rgba   sdn   art   fun   

如何根据条件判断是否默认选中table表格前面的复选框

table.render({
elem: ‘#userTable‘
, url: ‘../sysRole/getUserList‘
, title: ‘用户列表‘
, page: true //开启分页
, cols: [[
{type:‘checkbox‘}
, {field: ‘userName‘,sort: true, title: ‘用户名称‘}
, {field: ‘account‘,sort: true, title: ‘登录账户‘}
, {field: ‘deleteFlg‘,sort: true, title: ‘是否启用‘}
]]
,done: function(res, page, count){
//可以自行添加判断的条件是否选中
//这句才是真正选中,通过设置关键字LAY_CHECKED为true选中,这里只对第一行选中
res.data[0]["LAY_CHECKED"]=‘true‘;
//下面三句是通过更改css来实现选中的效果
var index= res.data[0][‘LAY_TABLE_INDEX‘];
$(‘tr[data-index=‘ + index + ‘] input[type="checkbox"]‘).prop(‘checked‘, true);
$(‘tr[data-index=‘ + index + ‘] input[type="checkbox"]‘).next().addClass(‘layui-form-checked‘);
}
});

 

 

转载https://blog.csdn.net/readyyy/article/details/82971723

layui默认选中table的CheckBox复选框

标签:log   登录   target   inpu   tps   rgba   sdn   art   fun   

原文地址:https://www.cnblogs.com/liuzheyan/p/13924563.html

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