我想使用DataTables的过滤功能,但不想使用它们的搜索框。
In their docs下bFilter说:
Note that if you wish to use filtering in DataTables this must remain ‘true’ – to remove the default filtering input Box and retain filtering abilities,please use
之后句子不完整。
我试过了:
var oTable = $('#sortable').dataTable({ 'bPaginate':false,'bInfo':false,'bFilter': true // displays Search Box,setting false removes filter ability all together }); $('#Accumulate').click(function(){ oTable.fnFilter("Accumulate"); });
解决方法
你也可以隐藏使用css类
<style type="text/css"> .dataTables_filter { display: none; } </style>