layui框架列表监听checkbox选中数据的值
在数据定义渲染的table的id
table.render({
id:"checkboxTable",
elem: '#myTable'
, url: url
, height: "full-70"
, where: dataS
, page: true
, cols: [[
{type: 'checkbox', fixed: 'left'}
, {field: 'id', title: '编号', align: "center", width: 80, fixed: 'left', edit: 'text', sort: true}
, {field: 'cust_name', title: '客户名', align: "center", width: 85}
, {field: 'cust_company', title: '客户公司', align: "center", width: 90}
]]
, done: function () {
layer.close(index);
}
});
方法添加获取数据,这样就可以啦
var checkStatus = layui.table.checkStatus(‘checkboxTable’).data;
console.log(checkStatus)