创建响应html表时遇到的问题

时间:2016-03-16 21:57:20

标签: javascript html css twitter-bootstrap

创建了一个带有固定左列的html表。

以下是代码:

<div class="table-responsive" >
    <table class="table table-striped table-bordered table-hover table-condensed" style= "width:50%">
        <thead>
            <tr>
                <th>#</th>
                <th>Table heading</th>
                <th>Table heading</th>
                <th>Table heading</th>
                <th>Table heading</th>
                <th>Table heading</th>
                <th>Table heading</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>1</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
            </tr>
            <tr>
                <td>2</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
            </tr>
            <tr>
                <td>3</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
            </tr>
        </tbody>
    </table>
</div>

链接:http://jsfiddle.net/4XG7T/3/

该表在移动设备上显示如下,并且不会使用固定列滚动。

Mobile view

有人可以建议我如何在移动设备上实现预期的行为吗?。

1 个答案:

答案 0 :(得分:1)

引导程序不支持移动设备上的漂亮表格视图,您需要自己处理它以呈现数据。

您需要选择最适合您解决此问题的机制,下面是一些提供此问题解决方案的链接和想法:

或者只是保持表滚动