詳解thinkphp下部分內容的ajax無刷新分頁

下面thinkphp框架教程欄目將給大家介紹thinkphp下頁面內部分內容的ajax無刷新分頁,希望對需要的朋友有所幫助!

thinkphp框架

<?php  namespace Think; class AjaxPage { // 分頁欄每頁顯示的頁數 public $rollPage = 5; // 頁數跳轉時要帶的參數 public $parameter  ; // 默認列表每頁顯示行數 public $listRows = 20; // 起始行數 public $firstRow ; // 分頁總頁面數 protected $totalPages  ; // 總行數 protected $totalRows  ; // 當前頁數 protected $nowPage    ; // 分頁的欄的總頁數 protected $coolPages   ; // 分頁顯示定制 protected $config  = array('header'=>'條記錄','prev'=>'上一頁','next'=>'下一頁','first'=>'第一頁','last'=>'最后一頁','theme'=>' %totalRow% %header% %nowPage%/%totalPage% 頁 %upPage% %downPage% %first%  %prePage%  %linkPage%  %nextPage% %end%'); // 默認分頁變量名 protected $varPage;   public function __construct($totalRows,$listRows='',$ajax_func,$parameter='') {     $this->totalRows = $totalRows;     $this->ajax_func = $ajax_func;     $this->parameter = $parameter;     $this->varPage = C('VAR_PAGE') ? C('VAR_PAGE') : 'p' ;     if(!empty($listRows)) {         $this->listRows = intval($listRows);     }     $this->totalPages = ceil($this->totalRows/$this->listRows);     //總頁數     $this->coolPages  = ceil($this->totalPages/$this->rollPage);     $this->nowPage  = !empty($_GET[$this->varPage])?intval($_GET[$this->varPage]):1;     if(!empty($this->totalPages) && $this->nowPage>$this->totalPages) {         $this->nowPage = $this->totalPages;     }     $this->firstRow = $this->listRows*($this->nowPage-1); }   public function nowpage($totalRows,$listRows='',$ajax_func,$parameter='') {     $this->totalRows = $totalRows;     $this->ajax_func = $ajax_func;     $this->parameter = $parameter;     $this->varPage = C('VAR_PAGE') ? C('VAR_PAGE') : 'p' ;     if(!empty($listRows)) {         $this->listRows = intval($listRows);     }     $this->totalPages = ceil($this->totalRows/$this->listRows);     //總頁數     $this->coolPages  = ceil($this->totalPages/$this->rollPage);     $this->nowPage  = !empty($_GET[$this->varPage])?intval($_GET[$this->varPage]):1;     if(!empty($this->totalPages) && $this->nowPage>$this->totalPages) {         $this->nowPage = $this->totalPages;     }     $this->firstRow = $this->listRows*($this->nowPage-1);      return $this->nowPage; }  public function setConfig($name,$value) {     if(isset($this->config[$name])) {         $this->config[$name]    =   $value;     } }  public function show() {     if(0 == $this->totalRows) return '';     $p = $this->varPage;     $nowCoolPage      = ceil($this->nowPage/$this->rollPage);     $url  =  $_SERVER['REQUEST_URI'].(strpos($_SERVER['REQUEST_URI'],'?')?'':"?").$this->parameter;     $parse = parse_url($url);     if(isset($parse['query'])) {         parse_str($parse['query'],$params);         unset($params[$p]);         $url   =  $parse['path'].'?'.http_build_query($params);     }     //上下翻頁字符串     $upRow   = $this->nowPage-1;     $downRow = $this->nowPage+1;     if ($upRow>0){         $upPage="<a class='ajaxify' id='big' href='JavaScript:;' onclick='".$this->ajax_func."(".$upRow.")'>".$this->config['prev']."</a>";     }else{         $upPage="";     }      if ($downRow <= $this->totalPages){         $downPage="<a class='ajaxify' id='big' href='JavaScript:;' onclick='".$this->ajax_func."(".$downRow.")'>".$this->config['next']."</a>";     }else{         $downPage="";     }     // << < > >>     if($nowCoolPage == 1){         $theFirst = "";         $prePage = "";     }else{         $preRow =  $this->nowPage-$this->rollPage;         $prePage = "<a class='ajaxify' id='big' href='JavaScript:;' onclick='".$this->ajax_func."(".$preRow.")'>上".$this->rollPage."頁</a>";         $theFirst = "<a class='ajaxify' id='big' href='JavaScript:;' onclick='".$this->ajax_func."(1)' >".$this->config['first']."</a>";     }     if($nowCoolPage == $this->coolPages){         $nextPage = "";         $theEnd="";     }else{         $nextRow = $this->nowPage+$this->rollPage;         $theEndRow = $this->totalPages;         $nextPage = "<a class='ajaxify' id='big' href='JavaScript:;' onclick='".$this->ajax_func."(".$nextRow.")' >下".$this->rollPage."頁</a>";         $theEnd = "<a class='ajaxify' id='big' href='JavaScript:;' onclick='".$this->ajax_func."(".$theEndRow.")' >".$this->config['last']."</a>";     }     // 1 2 3 4 5     $linkPage = "";     for($i=1;$i<=$this->rollPage;$i++){         $page=($nowCoolPage-1)*$this->rollPage+$i;         if($page!=$this->nowPage){             if($page<=$this->totalPages){                $linkPage .= " <a class='ajaxify' id='big' href='JavaScript:;' onclick='".$this->ajax_func."(".$page.")'> ".$page." </a>";             }else{                 break;             }         }else{             if($this->totalPages != 1){                 $linkPage .= " <span class='current'>".$page."</span>";             }         }     }     $pageStr  =  str_replace(         array('%header%','%nowPage%','%totalRow%','%totalPage%','%upPage%','%downPage%','%first%','%prePage%','%linkPage%','%nextPage%','%end%'),         array($this->config['header'],$this->nowPage,$this->totalRows,$this->totalPages,$upPage,$downPage,$theFirst,$prePage,$linkPage,$nextPage,$theEnd),$this->config['theme']);     return $pageStr; }  }
<?php namespace HomeController; use ThinkController; class IndexController extends Controller {     public function index(){         $info=M('info');         //統計要查詢數據的數量         $count=$info->count();         //實例化分頁類,傳入三個參數,分別是數據總數、每頁顯示的數據條數、要調用的jQuery ajax方法名         $p=new ThinkAjaxPage($count,4,'server');         //產生分頁信息         $page=$p->show();         //要查詢的數據,limit表示每頁查詢的數量,這里為4條         $data = $info->limit($p->firstRow.','.$p->listRows)->select();         //assign方法往模板賦值         $this->assign('list',$data);         $this->assign('page',$page); //        $res["content"] = $this->fetch('Index/index'); //        $this->ajaxReturn($res);         $this->display();     }     public function page(){         //實例化數據模型         $info=M('info');         //統計要查詢數據的數量         $count=$info->count();         //實例化分頁類,傳入三個參數,分別是數據總數、每頁顯示的數據條數、要調用的jQuery ajax方法名         $p=new ThinkAjaxPage($count,4,'server');         //產生分頁信息         $page=$p->show();         //要查詢的數據,limit表示每頁查詢的數量,這里為4條         $data = $info->limit($p->firstRow.','.$p->listRows)->select();         //assign方法往模板賦值         $this->assign('list',$data);         $this->assign('page',$page);         //ajax返回信息         $res["content"] = $this->fetch('Index/article');         $this->ajaxReturn($res);     } }
<!DOCTYPE html> <html> <head> </head> <p>     hello world </p> <include file="Index/article" /> <script>     function server(pid){           var pid = pid;         $.get("{:U('Index/page')}", "p="+pid, function(data){                $("#server").replaceWith("<p  id='server'>"              +data.content+              "</p>");          });     } </script>  <script src="__PUBLIC__/jq/jquery1.8.3.min.js"></script> </html>
???<div> ????????<div> ????????????<div> ????????????????<div> ????????????????????<div> ????????????????????????<div> <i></i>信息列表</div> ????????????????????</div>  ????????????????????<div> ???????????????? ????????????????????????<table>  ????????????????????????????<thead>  ????????????????????????????????<tr> ????????????????????????????????????<th>a</th> ????????????????????????????????????<th>b</th> ????????????????????????????????????<th>c</th> ????????????????????????????????????<th>d</th> ????????????????????????????????</tr>  ????????????????????????????</thead>  ????????????????????????????<tbody> ????????????????????????????????????//循環賦值 ????????????????????????????????????<foreach> ????????????????????????????????????????<tr> ????????????????????????????????????????????<td>{$info.a}</td> ????????????????????????????????????????????<td>{$info.b}</td>????? ????????????????????????????????????????????<td>{$info.c}</td> ????????????????????????????????????????????<td>{$info.d}</td> ????????????????????????????????????????? ????????????????????????????????????????</tr> ????????????????????????????????????</foreach> ???????????????????????????????? ????????????????????????????</tbody> ???????????????????????????? ????????????????????????</table> ????????????????????????//分頁信息 ????????????????????????<div>?{$page}?</div> ???????????????????????? ????????????????????</div> ????????????????</div>???? ????????????</div>???????? ????????</div> </div>
 <script>     function server(pid){           var pid = pid;         $.get("{:U('Index/page')}", "p="+pid, function(data){                $("#server").replaceWith("<p  id='server'>"              +data.content+              "</p>");          });     } </script>
$p=new ThinkAjaxPage($count,4,'server');
<div>+數據</div>

以上就是詳解

? 版權聲明
THE END
喜歡就支持一下吧
點贊10 分享