Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Jquery 默认搜索框来过滤有限的列。它的预定义状态是所有列均可排序。如何使用来限制要过滤的列。
创建数据表时,您可以像这样将列定义为不可搜索。
$('#table').dataTable( "aoColumns": [ {"bSearchable": true}, {"bSearchable": false}, {"bSearchable": false} ]);
所以在这种情况下,将有三列,只有第一列是可搜索的。