有時候會直接用jquery insert tbody的內容,但是使用分頁(tablesorter.page)時會發生沒有length的問題,
解決方式就是不用jquery insert,或是更改tablesorter.js裡的code:
參考資料:http://stackoverflow.com/questions/8581064/tablesorter-n0-undefined
[javascript]
checkCell = (n[0].length-1),
[/javascript]
改成
[javascript]
checkCell = totalRows ? (n[0].length – 1) : 0,
[/javascript]