写一下bootstrap-table的增加删除查询的代码
时间: 2024-06-10 07:08:57 浏览: 115
datatable的例子使用--增加删除修改查询
4星 · 用户满意度95%
好的,下面是 bootstrap-table 的增加、删除、查询的示例代码:
增加:
```
$('#table').bootstrapTable('insertRow', {
index: 0,
row: {
id: '001',
name: 'John',
age: 25
}
});
```
删除:
```
var ids = $.map($('#table').bootstrapTable('getSelections'), function (row) {
return row.id;
});
$('#table').bootstrapTable('remove', {
field: 'id',
values: ids
});
```
查询:
```
$('#table').bootstrapTable('refresh', {
query: {
keyword: $('#keyword').val()
}
});
```
希望能对您有所帮助!
阅读全文