使用 jQuery 对记录进行分页
我有一个包含大量记录的 JSON 结果。 我想显示第一个,但有一个下一个按钮可以查看第二个,依此类推。 我不希望页面刷新,这就是为什么我希望 JavaScript、jQuery 甚至第三方 AJAX 库的组合可以提供帮助。
有什么建议么?
I have a JSON result that contains numerous records. I'd like to show the first one, but have a next button to view the second, and so on. I don't want the page to refresh which is why I'm hoping a combination of JavaScript, jQuery, and even a third party AJAX library can help.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
希望这可以帮助:
Hope this helps:
我使用 jqgrid 就是为了这个目的。 奇迹般有效。
http://www.trirand.com/blog/
I use jqgrid for just this purpose. Works like a charm.
http://www.trirand.com/blog/
我个人会将 json 数据加载到全局变量中并以这种方式对其进行分页。 希望您不要介意我对调查数据背景的假设,我想我昨天还记得您。
〜未经测试
我不得不承认@sktrdie 创建整个插件来处理调查的方法会很好。 在我看来,这种方法确实是阻力最小的解决方案。
I would personally load the json data into a global variable and page it that way. Hope you don't mind my assumptions on the context of survey data I think I remember you from yesterday.
~ UnTested
I'll have to admit that @sktrdie approach of creating a whole plugin for handling the survey would be nice. IMO this method is really a path of least resistance solution.