jquery – 过滤dataTables.net,而不包括filter-box输入

前端之家收集整理的这篇文章主要介绍了jquery – 过滤dataTables.net,而不包括filter-box输入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用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>
原文链接:https://www.f2er.com/jquery/182767.html

猜你在找的jQuery相关文章