修复表格标题使其不会滚动的方法有多种,以下是其中几种常用的方法:
.table-header {
position: fixed;
top: 0;
}
window.addEventListener('scroll', function() {
var tableHeader = document.querySelector('.table-header');
var tableHeaderTop = tableHeader.getBoundingClientRect().top;
if (tableHeaderTop <= 0) {
tableHeader.classList.add('fixed');
} else {
tableHeader.classList.remove('fixed');
}
});
以上是修复表格标题使其不会滚动的几种常用方法,根据具体的需求和项目情况选择适合的方法进行修复。
Bootstrap的表格和Html表格大同小异,只是封装了一些css供我们使用