Bootstrap Table是基于Bootstrap的轻量级表格插件,只需要简单的配置就可以实现强大的支持固定表头、单复选、排序、分页、搜索以及自定义表头等功能。
1、所需要的库:
@H_301_7@ bootstrap.min.css
@H_301_7@ bootstrap-table.css
@H_301_7@ jquery.min.js
@H_301_7@ bootstrap.min.js
@H_301_7@ bootstrap-table.js
2、Bootstrap Table获取数据的方式:
Bootstrap Table通过data属性标签或者JavaScript来显示表格数据:
在表格中设置data-toggle=“table”,此方式可以在不写JavaScript的情况下启用Bootstrap Table。
...
(2)、通过JavaScipt向表格传入数据:
、简单的静态数据
$('#table').bootstrapTable({
columns: [{
field: 'id',title: 'Item ID'
},{
field: 'username',title: 'Item Username'
},{
field: 'password',title: 'Item Passowrd'
}],data: [{
id: 1,username: 'Item 1',passowrd: '$1'
},{
id: 2,username: 'Item 2',password: '$2'
}]});
<2>、通过url<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a>数据
$('#table').bootstrapTable({
url: 'data1.json',columns: [{
field: 'id',{
field: 'passowrd',title: 'Item Passowrd'
},]});
3、Bootstrap Table简单的demo:
<<a href="https://www.jb51.cc/tag/Meta/" target="_blank" class="keywords">Meta</a> charset="utf-8">
<title>Bootstrap Table的demo</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="bootstrap-table.css">