有没有ajax分页的好例子?
我有一个页面将大型数据集显示到 html 表中。如何添加分页而无需每次更改页面时刷新整个页面
i have a page that displays large datasets into html tables. how can i add paging without having to refresh the whole page each time i change pages
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上你只需要一个页面来提交表单,并且给定搜索条件和页码,它只返回下一页,最好是作为 json 结果,这样你就可以只更改当前表格中的单元格,这样会更快渲染。
看来这是您想要的示例:
http://encosia .com/2008/08/20/easy-build-powerful-client-side-ajax-paging-using-jquery/
Basically you just need a page for your form submission, and given the search criteria and a page number, it just returns the next page, preferably as a json result, so you can just change the cells in the current table, which will be faster to render.
It appears this is an example of what you want:
http://encosia.com/2008/08/20/easily-build-powerful-client-side-ajax-paging-using-jquery/