19

我专门针对移动设备,所以我有一个 Bootstrap 响应表。它只是一个带有引导类“table-responsive”的div和一个嵌套在类“table table-striped table-bordered table-hover table-condensed”的表格。

有什么简单的方法可以确保第一列是固定的(不是水平滚动)?在移动设备上,可能每次都会滚动,但第一列包含本质上是表格标题的内容。

4

1 回答 1

41

如果您只针对移动设备,那么这可能对您有用:您可以克隆表格中的第一列并应用position:absolute,这样当您滚动表格的其余部分时它会显示在“前面”。

为此,您需要一些基本的 jquery 代码和自定义 CSS 类:

jQuery

$(function(){
    var $table = $('.table');
    //Make a clone of our table
    var $fixedColumn = $table.clone().insertBefore($table).addClass('fixed-column');

    //Remove everything except for first column
    $fixedColumn.find('th:not(:first-child),td:not(:first-child)').remove();

    //Match the height of the rows to that of the original table's
    $fixedColumn.find('tr').each(function (i, elem) {
        $(this).height($table.find('tr:eq(' + i + ')').height());
    });
});

CSS

.table-responsive>.fixed-column {
    position: absolute;
    display: inline-block;
    width: auto;
    border-right: 1px solid #ddd;
    background-color: #fff; /* bootstrap v3 fix for fixed column background color*/
}
@media(min-width:768px) {
    .table-responsive>.fixed-column {
        display: none;
    }
}

这是这种方法的工作演示

于 2013-11-02T07:15:17.100 回答