来自过滤搜索的分页

时间:2013-09-04 19:59:11

标签: jquery

我在jQuery中搜索:

$('#MainContent_myTable tr:gt(0)').each(function () {
    $(this).find('td:eq(0)').not(':contains(' + filterVal + ')').parent().hide();
});

我希望能够从上面的查找中保留在表格中的行中快速分页(没有插件)。

这样做的最佳方式是什么?

1 个答案:

答案 0 :(得分:1)

只需将此附件作为示例,并在调用之前包括搜索:

showPage = function(page) {
    $(".content").hide();
    $(".content").each(function(n) {
        if (n >= pageSize * (page - 1) && n < pageSize * page)
            $(this).show();
    });        
}