php ajax分頁代碼

來源:互聯網
上載者:User

header("content-type: text/html;charset=gbk");//輸出編碼,避免中文亂碼
?>
<html>
<head>
<title>ajax分頁示範</title>
<script language="網頁特效" >
var http_request=false;
  function send_request(url){//初始化,指定處理函數,發送請求的函數
    http_request=false;
 //開始初始化xmlhttprequest對象
 if(window.xmlhttprequest){//mozilla瀏覽器
  http_request=new xmlhttprequest();
  if(http_request.overridemimetype){//設定mime類別
    http_request.overridemimetype("text/xml");
  }
 }
 else if(window.activexobject){//ie瀏覽器
  try{
   http_request=new activexobject("msxml2.xmlhttp");
  }catch(e){
   try{
   http_request=new activexobject("microsoft.xmlhttp");
   }catch(e){}
  }
    }
 if(!http_request){//異常,建立對象執行個體失敗
  window.alert("建立xmlhttp對象失敗!");
  return false;
 }
 http_request.onreadystatechange=processrequest;
 //確定發送請求方式,url,及是否同步執行下段代碼
    http_request.open("get",url,true);
 http_request.send(null);
  }
  //處理返回資訊的函數
  function processrequest(){
   if(http_request.readystate==4){//判斷對象狀態
     if(http_request.status==200){//資訊已成功返回,開始處理資訊
   document.getelementbyid(reobj).innerhtml=http_request.responsetext;
  }
  else{//頁面不正常
   alert("您所請求的頁面不正常!");
  }
   }
  }
  function dopage(obj,url){
   document.getelementbyid(obj).innerhtml="<font color='green' font-size='12'>正在讀取資料...</font>";
   send_request(url);
   reobj=obj;
   }
 
</script>
<style>
/* css教程 document */
#result ul li{
 height:20px;
 width:auto;
 display:block;
 color:#999;
 border:1px solid #999;
 float:left;
 list-style:none;
 font-size:12px;
 margin-left:5px;
 line-height:20px;
 vertical-align:middle;
 text-align:center;
 }
#result ul li a:link{
 width:50px;
 height:20px;
 display:block;
 
 line-height:20px;
 background:#09c;
 border:1px solid #fff;
 color:#fff;
 text-decoration:none;
 }
#result ul li a:hover{
 width:50px;
 height:20px;
 display:block;
 
 line-height:20px;
 background:#09c;
 border:1px solid #fff;
 color:#f60;
 text-decoration:none;
 }
</style>
</head>
<body>
<div id="result">
<?php
$page=isset($_get['page'])?intval($_get['page']):1;        //這句就是擷取page=18中的page的值,假如不存在page,那麼頁數就是1。
$num=10;                                      //每頁顯示10條資料

$db=mysql教程_connect("localhost","root","");           //建立資料庫教程串連
mysql_select_db("test");                 //選擇要操作的資料庫

/*
首先咱們要擷取資料庫中到底有多少資料,才能判斷具體要分多少頁,具體的公式就是
總資料庫除以每頁顯示的條數,有餘進一。
也就是說10/3=3.3333=4 有餘數就要進一。
*/

$result=mysql_query("select * from users");
$total=mysql_num_rows($result); //查詢所有的資料

$url='test1.php';//擷取本頁url

//頁碼計算
$pagenum=ceil($total/$num);                                    //獲得總頁數,也是最後一頁
$page=min($pagenum,$page);//獲得首頁
$prepg=$page-1;//上一頁
$nextpg=($page==$pagenum ? 0 : $page+1);//下一頁
$offset=($page-1)*$num;                                        //擷取limit的第一個參數的值,假如第一頁則為(1-1)*10=0,第二頁為(2-1)*10=10。
$pagenav="<ul>";

//開始分頁導航條代碼:
$pagenav.="<li>顯示第 <b>".($total?($offset+1):0)."</b>-<b>".min($offset+10,$total)."</b> 條記錄</li><li>共 $total 條記錄&nbsp;</li>";

//如果只有一頁則跳出函數:
if($pagenum<=1) return false;

$pagenav.="<li> <a href=javascript:dopage('result','$url?page=1');>首頁</a></li> ";
if($prepg) $pagenav.="<li> <a href=javascript:dopage('result','$url?page=$prepg');>前頁</a></li> "; else $pagenav.=" <li>前頁</li> ";
if($nextpg) $pagenav.="<li><a href=javascript:dopage('result','$url?page=$nextpg');>後頁</a> </li>"; else $pagenav.=" <li>後頁</li> ";
$pagenav.="<li> <a href=javascript:dopage('result','$url?page=$pagenum');>尾頁</a></li> ";
$pagenav.="<li>第 $page 頁</li><li>共 $pagenum 頁</li></ul>";

//假如傳入的頁數參數大於總頁數,則顯示錯誤資訊
if($page>$pagenum){
       echo "error : can not found the page ".$page;
       exit;
}

$info=mysql_query("select * from users limit $offset,$num");   //擷取相應頁數所需要顯示的資料
while($it=mysql_fetch_array($info)){
       echo $it['u_name'];
    echo "<br>";
}                                                              //顯示資料
  echo"<br>";
  echo $pagenav;//輸出分頁導航

?>
</div>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.