当我在页面上只有 1 个表格时,该插件工作正常。
但是有两个,我得到一个错误:
未捕获的类型错误:无法设置未定义的属性“计数”
这是因为sortList
下面设置的选项。我将它设置为在第 4 列进行排序,并且aux_table
首先显示的只有 3 列。但它有效而main_table
无效。我如何让它们都工作,或者只是第二个,更重要main_table
?
两个表都是类tablesorter
,它们有不同的 id (main_table
和aux_table
)。
页面上的第一个表格有效,第二个无效。这是我<head>
标签中的 JS:
$(document).ready(function() {
// call the tablesorter plugin
$("table").tablesorter({
// sort on the 4th column (index 3) column, DESC (1). ASC is (0).
sortList: [[3,1]]
});
});