1

我找到了一个我正在尝试使用的表格排序器示例。

加载页面时,第一次尝试时,表格不会排序或转到下一页。但是,如果我更改限制并尝试排序/转到下一页,它会起作用。它也不会抛出任何错误。

这是链接: http ://srikanthrajan.com/test-table/tablesorter.html

4

1 回答 1

3

嘿伙计在这里看到工作演示:http : //jsfiddle.net/ZK6dZ/

你的LIMIT价值是空的。: http: //mottie.github.com/tablesorter/docs/example-pager.html

休息演示应该适合原因:)

代码

$(function() {
    $("table").tablesorter({
        theme: 'blue',
        widthFixed: true,
        widgets: ['zebra']
    }).tablesorterPager({container: $("#pager")}); 
});​
于 2012-10-16T22:11:14.910 回答