bootstrap table 获取表格数据

获取表格所有数据

1
var rows = $('#bootstrap-table').bootstrapTable('getData')

获取选中的数据

1
var selected = $("#bootstrap-table").bootstrapTable('getSelections');

刷新表格数据

1
$('#bootstrap-table').bootstrapTable("refresh");

销毁表格

1
$('#bootstrap-table').bootstrapTable("destroy");

清空表格所有数据

1
$("#bootstrap-table").bootstrapTable('removeAll')