PHP查询分页的实现

后端基于thinkphp框架

前端需要dataTables插件:传送门下载地址

HTML代码

第一步引入插件

<!-- DataTables CSS -->
<link rel="stylesheet" type="text/css" href="http://cdn.datatables.net/1.10.15/css/jquery.dataTables.css">

<!-- jQuery -->
<script type="text/javascript" charset="utf8" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>

<!-- DataTables -->
<script type="text/javascript" charset="utf8" src="http://cdn.datatables.net/1.10.15/js/jquery.dataTables.js"></script>

第二步添加

<table id="table_id_example" class="display">
   <thead>
   <tr>
      <th>ID</th>
      <th>发布时间</th>
      <th>发布IP</th>
      <th>公告内容</th>
   </tr>
   </thead>
   <tbody>
      <volist name="notice" id="vo">
         <tr>
            <td>{$vo.id}</td>
            <td>{$vo.create_time}</td>
            <td>{$vo.create_ip}</td>
            <td>{$vo.notice_content}</td>
         </tr>
      </volist>
   </tbody>
</table>

第三步JS

<script>
    $(document).ready( function () {
        $('#table_id_example').DataTable();
    } );
   </script>

PHP代码

public function gonggaochakan(){
    /* 公告查看
     */
    $dbNotice = M('notice');//实例化dbNotice对象
    $count      = $dbNotice->count();// 查询满足要求的总记录数
    $Page       = new \Think\Page($count,$count);// 实例化分页类 传入总记录数和每页显示的记录数(全部记录)
    $data = $dbNotice->order('create_time')->limit($Page->firstRow.','.$Page->listRows)->select();//获得所有记录
    $this->assign('notice',$data);//传给模板
    $this->show();
}

​效果


  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值