项目场景:
layui table选中 {checkbox: true} 不生效
问题描述:
layui table选中 {checkbox: true} 不生效
[[ //表头
{ checkbox: true }
, { field: 'id', title: '权限编号', width: 120, fixed: 'left', align: 'center', sort: true }
, { field: 'title', title: '菜单名字', width: 120, align: 'center' }
, { field: 'power', title: '权限名字', width: 120, align: 'center' }
]]
}
原因分析:
fixed: ‘left’ 遮挡住了
解决方案:
去掉 fixed: ‘left’