这段javascript代码是从coffee-script生成的,与datatable的示例代码非常相似。
(function() {
$(function() {
var table;
table = $('.table').dataTable({});
return $("#filter-unread").click(function() {
return table.columns('.status').search('unread').draw();
});
});
}).call(this);
但点击过滤未读按钮时出错,如何解决?
TypeError: table.columns is not a function
return table.columns('.status').search('unread').draw();