JQuery Ajax 分页插件 jquery_paginator

在网上找到利用JQuery 的Ajax分页插件, 数据是组织成 JSON 形式的, 非常值得参考 

 

原文地址 :

 

http://www.myjquery.co.uk/docs/x/plugins/pagination/jquery_pagination.php#config

 

有2个参数在此作下记录:

 

Element Model

elementModel: ['<div style="margin-bottom:20px;"><img src="{0}"/>',...]
fieldnames:["thumb_cmimg", "title", "date_dpicker","nbody_cmtxt", "id", "title_wwwsafe"]   

 

The elementModel and fieldnames are parallel arrays and are also a reflection of the array for each row held in the server-side database query result array. The elementModel array defines the html for each paginator item. The fieldnames array defines which value from the database query should replace {n} in elementModel.

 

就是  fieldnames  里面的参数在 elementModel 里面也对应输出值。 {0} 对应的 thumb_cmimg ,{1} 对应的 title .... 类推。 每使用1个参数需要一段 , 隔开。 但是不必按照 0 , 1 , 2 ..... 的顺序排列。

 

把该分页插件存放在附件 。

 

 

你可能感兴趣的:(html,jquery,Ajax,PHP,json)