HTML代码本文主要和大家分享PHP查询分页的实现方法,后端基于thinkphp框架前端需要dataTables插件,希望能办这个胡到大家。
第一步引入插件
<!-- 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代码
ublic 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();
}效果

以上就是PHP查询分页的实现方法的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号