1
我在我的應用程序中使用jquery tablesorter表。我想爲tbody和overflow-y滾動添加最大高度。jquery tablesorter垂直滾動不工作
<table id="myTable" class="tablesorter">
<thead>
<tr>
<th>Last Name</th>
<th>First Name</th>
<th>Email</th>
<th>Due</th>
<th>Web Site</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smith</td>
<td>John</td>
<td>[email protected]</td>
<td>$50.00</td>
<td>http://www.jsmith.com</td>
</tr>
</tbody>
</table>
我添加
.tablesorter thead{
display:block;
}
.tablesorter tbody{
height: 200px;
overflow-y: auto;
overflow-x: hidden;
display: block ;
}
但它不是採取...有沒有什麼辦法來添加此功能tablesort?
遺憾的漏點,它不工作還 –