我有一个带有标题的 HTML 表格,一旦用户向下滚动它,我就会使用 jQuery 将其锁定到浏览器的顶部。我已经在 SO 和其他地方看到了很多针对这个特定问题的解决方案,但无法克服我遇到的障碍。
我已经能够让我的 jQuery 很好地锁定标题(我的 <thead> 中有一个 <tr>,其中包含我的列标题,并且我已经为该 <tr> 提供了一个 ID 为“theadTrId”)。
$(document).ready(function () {
var widths = new Array();
//create array of <th> widths
var i = 0;
$('th').each(function () {
widths[i] = $(this).width();
i++;
});
var elementPosTop = $('#theadTrId').offset().top;
$(window).scroll(function () {
SetWidths();
});
var SetWidths = function () {
var wintop = $(window).scrollTop();
if (wintop > elementPosTop) {
$('#theadTrId').css({ "position": "fixed", "top": "0" });
//<th> and <td> widths in 1st column
$('#th1').width(widths[0]);
$('#td1').width(widths[0]);
//<th> and <td> widths in 2nd column
$('#th2').width(widths[1]);
$('#td2').width(widths[1]);
//x number of other columns with same logic...
} else {
$('#theadTrId').css({ "position": "inherit" });
}
};
});
这可以正常工作,并在向下滚动时将标题锁定到窗口顶部,并在向上滚动时将其恢复为默认值,但对于我来说,我无法让 < th > 和 < td > 列宽在何时对齐添加了以下 CSS:
td {
max-width: 200px;
}
td, th {
padding: 10px;
}
我是否应该删除该样式,所有标题及其列都会完美排列。此样式是必需的,不能删除。表格宽度也需要设置为 100%。有什么建议么?
jsFiddle 在这里(如果您删除最后 2 个 CSS 属性,您可以看到所需的行为,问题在 Firefox 中最为明显):http: //jsfiddle.net/aKe6j/59/