search
HomeBackend DevelopmentPHP TutorialAjax example code to perfectly implement the paging function of two web pages_PHP tutorial

Ajax example code to perfectly implement the paging function of two web pages_PHP tutorial

Jul 21, 2016 pm 03:11 PM
ajaxmetacodePaginationFunctioncopyPerfectExampleaccomplishofWeb pagefront page

分页的首页

复制代码 代码如下:


武侠小说分页



<script><BR>var page='';<BR>  function init(page){<BR>  document.getElementById("tables").innerHTML='';<BR>   var xhr;<BR>   if(window.XMLHttpRequest){<BR> xhr = new XMLHttpRequest();<BR>}else if(window.ActiveXObject){<BR> xhr =new ActiveXObject("Microsoft.XMLHTTP")<BR>}<BR>var url="fenye.php";<BR> xhr.open("POST",url,true);<BR> xhr.onreadystatechange=callback;<BR> xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");<BR> if(page){<BR> xhr.send("page="+page);<BR> }<BR> else {xhr.send("page=1");}<BR> var content;<BR> function callback(){<BR>   if(xhr.readyState==4){<BR>     if(xhr.status==200){<BR>      var json =eval('('+xhr.responseText+')');<BR>   //alert(xhr.responseText);<BR>  var fenye=json.str;<BR> //  alert(fenye);<BR>     document.getElementById('div').innerHTML=fenye;<BR>  content="<th>ID<th>名称<th>作者<th>出版社<th>ISBN号<th>类型<th>价格";<BR>  for(var i=0;i<json.info.length;i++){<BR>  content+="<tr><td>"+json.info[i].id+"<td>"+json.info[i].name+"<td>"+json.info[i].author+"<td>"+json.info[i].publisher+"<td>"+json.info[i].isbn+"<td>"+json.info[i].type+"<td>"+json.info[i].price+"";<BR>  document.getElementById("tables").innerHTML=content;<BR>  }<BR>    // alert(fenye);<BR>     }<BR>   }<BR>   }<BR> }<br><br></script>



 

jquery实现$.ajax的分页




ID 名称 作者 出版社 ISBN号 类型 价格


 


 

 

 





 

分页的php精华代码

复制代码 代码如下:

//Command the model layer to process data
$link=mysql_connect('localhost','root','') or die("failure");
mysql_select_db('books',$link) or die("Error connecting to the database!");
//Display the number of records per page
$pagesize = 2;
//Find the total number of records
$sql = "select count(*) as total_rows from books";
$result = mysql_query($sql);
$total_rows = mysql_fetch_array($result);
//Find the total Number of pages
$pages = ceil($total_rows[0]/$pagesize);
//The current page
$page = $_POST['page'];
$strtext = " Current page ".$page."."Total".$pages."Page"."Total".$total_rows[0]."Record";
//var_dump($str);
//Next, I need to find the corresponding data based on the currently clicked page number
$offset = $pagesize*($page-1);
$sql = "select * from books limit $offset,$pagesize ";
mysql_query("set names utf8");
$res=mysql_query($sql);

$rows=array();
while($row=mysql_fetch_assoc($ res)){
$rows[]=$row;
}
$pageInfo = $rows;
//echo json_encode($pageInfo);
//var_dump($pageInfo) ;
//The data link will be obtained and then returned to
$first=1;
$prev=$page-1;
$next=$page+1;
$last=$ pages;

//Command the view layer to display data
$first_a = "Ajax example code to perfectly implement the paging function of two web pages_PHP tutorial";
if($page>1){
$prev_a = "Ajax example code to perfectly implement the paging function of two web pages_PHP tutorial";
}
if($page $next_a = "Ajax example code to perfectly implement the paging function of two web pages_PHP tutorial";
}
$last_a = "Ajax example code to perfectly implement the paging function of two web pages_PHP tutorial";
@$str = $strtext.$first_a.$prev_a.$next_a.$last_a;
//var_dump($str);
$info = array('str'=>$str,'info'=> $pageInfo);
echo json_encode($info);

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326843.htmlTechArticle Copy the code on the homepage of the page as follows: meta http-equiv="Content-Type" content="text/html ; charset=utf8" / h1 align="center"Martial arts novel paging/h br/ script src="jquery-1.4.2.min...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft