最近找到一款比较好的表格插件bootstrap-table,根据名称咱们能够看出是基于bootstrap框架下css
的表格,功能较多,能够锁定头部,排序以及搜索,用法也比较简单,只要引用css与jsbootstrap
使用以data开头的自定义属性及可完成全部的功能,在使用中发现一个问题,就是在模态框中使框架
用固定头部的表格底部会溢出,在非模态框即单独的页面中无此问题,现暂时解决的方法是spa
$(".fixed-table-container").css("padding-bottom","40px");
$(window).resize(function () {
setTimeout(function(){$(".fixed-table-container").css("padding-bottom","40px")},200);
$('#tableTest1').bootstrapTable('resetView');//随窗口改变表格自适应
}); 插件