gpt4 book ai didi

jquery - 水平滚动 dataTables.js

转载 作者:太空狗 更新时间:2023-10-29 14:43:08 25 4
gpt4 key购买 nike

我很难让水平滚动与 dataTables.js 一起工作。预期结果是一个允许我在表格内水平滚动的表格。当前结果是一个扩展到容器 div 之外的表。有什么解决办法吗?

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>bugs@tunesquad.com</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
} );

最佳答案

将“scrollX”更改为“sScrollX”:'100%'

$("#portal-drivers").dataTable( {
"sScrollX": '100%'
} );

关于jquery - 水平滚动 dataTables.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24717184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com