如何获得过滤的行数
Posted
技术标签:
【中文标题】如何获得过滤的行数【英文标题】:How to get filtered row count 【发布时间】:2015-09-18 17:38:11 【问题描述】:我一直在尝试在过滤后获取表格的行数,但我什至无法让它最初回复行数。
我的表格通过 html5 呈现并由 php 填充,一切正常。
<table id="table_books" class="table datatable" data-searchplaceholder="Search books..." data-margindifference="70" >
<thead>
<tr>
<th style="width:30px;"><i class="fa fa-code" title="click"></i></th>
<th>Column1</th>
<th>Column2</th>
<th>Column3</th>
<th class="text-right hidden-xs" style="width:20%">Details</th>
</tr>
</thead>
<tbody>
<?php echo $contenthtml; ?>
</tbody>
</table>
我发现文档说这在 1.9 中有效,但我得到一个无效的函数
$(document).ready(function()
var btable = $('#table_books').DataTable();
var b_table_count = btable._('tr', "filter":"applied");
console.log(b_table_count);
);
【问题讨论】:
【参考方案1】:使用page.info()
API 方法获取表的分页信息。
它返回一个对象,例如:
"page": 1,
"pages": 6,
"start": 10,
"end": 20,
"length": 10,
"recordsTotal": 57,
"recordsDisplay": 57
用法:
function getNumFilteredRows(id)
var info = $(id).DataTable().page.info();
return info.recordsDisplay;
【讨论】:
以上是关于如何获得过滤的行数的主要内容,如果未能解决你的问题,请参考以下文章