使用tablesorter排序时 Uncaught TypeError: Cannot read property 'toString' of undefined

以倒序排序第四列代码:

//...

// append new html to table body
$(".table2 tbody").append(html);

// let the plugin know that we made a update
$(".table2").trigger("update");

// set sorting column and direction, this will sort on the first and third column
var sorting = [[3,1]];

// sort on the first column
$(".table2").trigger("sorton",[sorting]);
return false;

错误原因:

排序的列不是数字,或可排序的对象

解决方案:

不要对非数字等不可排序的列排序。

你可能感兴趣的:(使用tablesorter排序时 Uncaught TypeError: Cannot read property 'toString' of undefined)