开发者

html table max row and ajax navigation

开发者 https://www.devze.com 2022-12-21 18:48 出处:网络
I have a PHP page that returns an HTML table like this: <table> <tr> <td>First Row data</td><td>Second Rowdata</td><td>Third Rowdata</td>

I have a PHP page that returns an HTML table like this:

<table>
   <tr>
     <td>First Row data</td><td>Second Row  data</td><td>Third Row  data</td>
   </tr>
   <tr>
     <td>First Row data</td><td>Second Row  data</td><td>Third Row  data</td>
   </tr>
   <tr>
     <td>First Row data</td><td>Second Row  data</td><td>Third Row  开发者_高级运维data</td>
   </tr>
   <tr>
     <td>etc...</td>
   </tr>
</table>

What I want to do is to add an ajax numerical pagination system (1 2 ... 6) that allows we to fix a max 3 rows to display and reaching the others with the navigation.

Do you know where can I find a ready script that can help to solve this problem?


Is this about what your looking for? http://www.dynamicdrive.com/dynamicindex17/ajaxpaginate/index.htm

0

精彩评论

暂无评论...
验证码 换一张
取 消