我很難讓水平滾動與dataTables.js一起工作。預期的結果是允許我在表格內水平滾動的表格。當前結果是一個擴展到容器div之外的表。任何解決方案水平滾動dataTables.js
HTML:
<div class="box-body table-responsive">
<table id="portal-drivers" class="table table-bordered table-striped" cellspacing="0" width="100%">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Number</th>
<th>Rating</th>
<th>Transactions</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bugs</td>
<td>Bunny</td>
<td>[email protected]</td>
<td>(310) 530-6789</td>
<td>4.8</td>
<td>309239045293459823945234895</td>
</tr>
</tbody>
</table>
CSS:
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
white-space: nowrap;
}
#portal-drivers {
overflow: auto;
}
JQuery的
$("#portal-drivers").dataTable({
"scrollX": true
});
真的很好。 我還在數據表應用程序中應用了「sScrollX」:'100%',但標題出現寬度問題。 – MSTdev