我正在使用 RoR 应用程序并尝试为 jquery-tablesorter 实现全文搜索
这里的例子:http: //jsfiddle.net/BCreb/104/
在 jsfiddle 中一切都很好,但是当我将它设置为应用程序并尝试写入搜索框时,浏览器会尖叫:
Uncaught TypeError: Cannot read property 'length' of undefined
它在文件jquery.tablesorter.filter.mod.js:120
var allRows = table.config.cache.row;
var resultRows = [];
var allRowsCount = allRows.length; <-- here is line 120
我想不通,为什么我会收到这个错误。任何帮助表示赞赏!