我在同一张桌子上有两个不同的 tbody。我只想在第一个 tbody 上使用表格分类器。有没有办法单独为第二个 tbody 跳过使用 tablesorter ???
<table>
<tbody id="1"></tbody> /* Apply table sorter for this tbody */
<tbody id="2"></tbody> /* Don't Apply table sorter for this tbody*/
</table>
我在同一张桌子上有两个不同的 tbody。我只想在第一个 tbody 上使用表格分类器。有没有办法单独为第二个 tbody 跳过使用 tablesorter ???
<table>
<tbody id="1"></tbody> /* Apply table sorter for this tbody */
<tbody id="2"></tbody> /* Don't Apply table sorter for this tbody*/
</table>
我猜你正在使用我的 tablesorter 分支,它支持对多个 tbodies 进行排序。原始插件仅对第一个 tbody 进行排序。
如果您希望 tablesorter 忽略任何 tbody,只需将类名添加tablesorter-infoOnly
到 tbody。此类名称由cssInfoBlock
选项设置。
请注意,除非表格包含thead
.
只需将第二个 tbody 作为另一个表,并使用 CSS 使它们看起来像一个表。
<table>/* Apply table sorter for this table */
<tbody id="1"></tbody>
</table>
<table>/* Don't Apply table sorter for this table*/
<tbody id="2"></tbody>
</table>