我沒有什麼好的解決辦法來解決它有以下類型結構的表頭和列:我們怎樣才能凍結HTML表第一欄和標題
<table>
<thead>
<tr>
<th colspan="4">Current</th>
<th colspan="4">New/Requested</th>
</tr>
<tr>
<th nowrap="nowrap">RSD </th>
<th nowrap="nowrap">CRSD </th>
<th nowrap="nowrap">MSD </th>
<th nowrap="nowrap">Open QTY </th>
<th nowrap="nowrap">CRD </th>
<th nowrap="nowrap">CRSD </th>
<th nowrap="nowrap">MSD </th>
<th nowrap="nowrap">Open QTY </th>
<th nowrap="nowrap">Action</th>
<th nowrap="nowrap">Reason</th>
<th nowrap="nowrap">Action Code Status </th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
.....plenty of rows
</tr>
</tbody>
</table>
,並通過Ajax調用得到填充, 請提供一個很好的解決方案,我可以使用我以前的css。 (意味着它不需要任何css更改)。
如果你沒有在你的頭使用合併單元格,此作品不錯http://fixedheadertable.com/但如果你使用合併單元格時,跨越列將隱藏起來。 –
只有RSD列 – user1397770
這個鏈接是很好的解決方案,但我必須使用他們的CSS ..你能告訴我如何使用這個解決方案,而不必改變我以前的CSS(我也想修正列) – user1397770