ページングする場合、ページ数が固定されずページ数が多くなる場合は以下のjsを修正する方法
<a id="a1" href="">第一页</a> <a id="a2" href="">第二页</a> <a id="a3" href="">第三页</a>............<script> $(function() { $('#a1').click(function () { $('body').load('index.php?page=1') return false; }); $('#a2').click(function () { $('body').load('index.php?page=2') return false; }); $('#a3').click(function () { $('body').load('index.php?page=3') return false; });................ }); </script>
<script src=scripts/jquery-1.8.3.min.js></script><script>$(function() { $('a[id^=a]').click(function () { $('#list').load('list.php?page=' + $(this).attr('id').substr(1)) return false; });});</script><a id="a1" href="#">第一页</a><a id="a2" href="#">第二页</a><a id="a3" href="#">第三页</a><div id="list"></div>
<?phpprint_r($_GET);
実際にはページングバーが生成されますphp では、
最初のページ
2 ページ目
3 ページ目< /a>