bootstraptable获取选中行
时间: 2023-10-24 19:06:28 浏览: 276
bootstrap table 行内容合并函数
你可以通过 BootstrapTable 的 `getSelections` 方法获取表格中被选中的行数据,示例代码如下:
```javascript
// 获取表格对象
var table = $('#table').bootstrapTable();
// 获取被选中的行数据
var selections = table.bootstrapTable('getSelections');
// 遍历被选中的行数据
$.each(selections, function (index, row) {
console.log(row); // 输出每行数据
});
```
在上面的代码中,`getSelections` 方法返回一个数组,其中包含被选中的所有行数据。你可以通过遍历这个数组,获取每一行的数据进行相应的操作。
阅读全文