我有一张带有两个表格标题的表格<th>。我需要使用 jquery 表排序对两个不同的集合进行排序。
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="listtable">
<thead>
<tr>
<th>Heading Set1 - A</th>
<th>Heading Set1 - B</th>
<th>Heading Set1 - C</th>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
<thead>
<tr>
<th>Heading Set2 - A</th>
<th>Heading Set2 - B</th>
<th>Heading Set2 - C</th>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
排序单个 TH 的脚本如下:
$(function()
{
$(".listtable").tablesorter({
sortList : [[1,0]],
widgets: ["zebra", "columns"],
widgetOptions: {
columns: [ "primary", "secondary", "tertiary" ],
columns_thead : true,
columns_tfoot : true
}
});
我可以对一组 TH 进行排序,但我需要在现有表中添加另一组 TH 和 TBODY。我的脚本不允许对单个表中的两个集合进行排序。