bootstrap-table回显选中行
时间: 2023-05-04 19:01:43 浏览: 568
bootstrap table实现点击翻页功能 可记录上下页选中的行
5星 · 资源好评率100%
在使用bootstrap-table时,要回显选中行,可以使用以下步骤:
1.设置参数:
$('#table').bootstrapTable({
clickToSelect: true,
singleSelect: true,
onCheck: function(row){
//选中行时触发的操作
}
});
2.在onCheck事件中实现选中行的回显操作,例如:
$('#table').bootstrapTable({
clickToSelect: true,
singleSelect: true,
onCheck: function(row){
$('#row-info').html(JSON.stringify(row));
//将选中行信息展示在页面上
}
});
阅读全文