修复bootstrap table在刷新列表时标题栏和下面对不上
2021-11-29 本文已影响0人
leptune
// 要先引入jquery
$(document).on('post-header.bs.table', '#table', function() {
// 原理:水平滚动条向左滚动1像素,bootstrap-table会自动调整标题栏和内容栏对齐
$(".fixed-table-body").scrollLeft($(".fixed-table-body").scrollLeft()-1);
});