jQuery tablesorterPager显示记录信息摘要

时间:2011-07-02 00:42:24

标签: jquery tablesorter jquery-pagination

有谁知道如何让tablesorter寻呼机插件显示以下信息:

显示57条记录中的1至10条

这只是一个例子,但我无法弄清楚我可以根据每页显示的记录数量来获取前两个数字。我想出了如何获得总记录数。不确定是否有办法让我可以得到其他两个数字,不管是不是..任何帮助都将不胜感激!

1 个答案:

答案 0 :(得分:1)

我最近在github上添加了一个tablesorter插件的分支,其中包含一些改进和缺少的文档。看到此请求后,我还更新了寻呼机插件,以便您创建自定义输出。要获得您请求的输出,请使用此代码(demo):

$("table")
  // initialize tablesorter
  .tablesorter()

  // initialize the pager plugin
  .tablesorterPager({
    // target the pager markup
    container: $("#pager"),
    // output default: '{page}/{totalPages}'
    output: 'Displaying {startRow} to {endRow} of {totalRows} records'
  });

此外,原始寻呼机HTML标记在输入内显示。您现在可以使用任何元素。有关完整示例,请参阅演示页。