How to use jQuery to paginate JSON data?

后端 未结 5 1198
迷失自我
迷失自我 2020-12-09 12:47

Duplicate:

Good jquery pagination plugin to use with json Data…

My JSON data looks like this



        
5条回答
  •  青春惊慌失措
    2020-12-09 13:18

    If jsonObject is the JSON object, then

    jsonObject.Table[0], jsonObject.Table[1], ... jsonObject.Table[4]
    

    will be the objects of the first page. What you will do with the pages depends on your application.

提交回复
热议问题