假設我有以下幾點:使用Bootstrap使一列固定爲水平滾動?
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>#</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
/* ... more table headers */
</tr>
</thead>
<tbody>
<tr>
<td>ID 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>ID 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>
/* ... more table rows */
</tbody>
</table>
我想添加更多的表頭,並最終使該表可滾動水平。是否有可能使第一列(包含ID的列)保持固定並始終可見,無論用戶水平滾動多少?
我想創建使用jQuery插件已經在這裏實現:http://www.novasoftware.com/Download/jQuery_FixedTable/JQuery_FixedTable.aspx(現場演示這裏:http://www.novasoftware.com/Download/jQuery_FixedTable/jQuery_FixedTable_Demo.htm)
嘿棘手,非常感謝你爲你的迅速和非常有益的反應! – Sparks