在 layui 中,可通过以下步骤获取 table 表格选中行值:获取当前选中的所有行:layui.table.checkstatus(‘tableid’);获取当前选中的行数据:let data = layui.table.checkstatus(‘tableid’).data;获取当前选中的行索引:let index = layui.table.checkstatus(‘tableid’).index。
如何使用 layui 获取 table 表格选中行值
在 layui 中,获取表格选中行值的方法如下:
1. 获取当前选中的所有行
<code class="javascript">layui.table.checkStatus('tableId');</code>
登录后复制
2. 获取当前选中的行数据
<code class="javascript">let data = layui.table.checkStatus('tableId').data;</code>
登录后复制
3. 获取当前选中的行索引
<code class="javascript">let index = layui.table.checkStatus('tableId').index;</code>
登录后复制
其中,tableId 为表格的容器 ID。
示例代码:
<code class="javascript">layui.use('table', function () { var table = layui.table; // 获取表格实例 let instance = table.render({ elem: '#test-table', data: [{ id: 1, name: 'John Doe' }, { id: 2, name: 'Jane Doe' }], cols: [[{ type: 'checkbox' }, { field: 'id', title: 'ID' }, { field: 'name', title: '姓名' }]] }); // 获取当前选中的行 let data = table.checkStatus('test-table').data; // 输出选中行的姓名 console.log(data[0].name); // John Doe });</code>
登录后复制
以上就是layui怎么获取table表格选中行值的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:momo,转转请注明出处:https://www.dingdanghao.com/article/304708.html