ajax搜索分页

Posted 蓝庭英

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax搜索分页相关的知识,希望对你有一定的参考价值。

<input type="text" name="name" id="word"/>
<button class="sou" id="{$arr.p}">搜索</button>
<input type="hidden" name="p" id="p" value="{$arr.p}">
<tbody id="td">
$(document).on("click",".sou",function(){
var p=$(this).attr("id");
var word=$("#word").val();
$p=Request::instance()->param("p");
$page=empty($p)?1:$p;
$where=‘‘;
if(Request::instance()->param("word")){
$where[‘name‘]=Request::instance()->param("word");
}
$count=Db::table("list")->where($where)->count();
$length=4;
$zong=ceil($count/$length);
$limit=($page-1)*$length;
$data=Db::table("list")->limit($limit,$length)->where($where)->select();
$arr=[‘list‘=>$data,‘last_page‘=>$zong];
echo json_encode($arr);




















以上是关于ajax搜索分页的主要内容,如果未能解决你的问题,请参考以下文章

react-slick 自定义分页分页道具使用

单页分页问题中的多个角度材料表

梦内容页分页标题提取

一个视图中的 CI 多页分页,

以多页分页打印所有数据

当我在基于类的视图中应用过滤器时,如何在 django 中使用分页分页。网址总是不断变化我如何跟踪网址