php+ajax实现无刷新分页的方法

前端之家收集整理的这篇文章主要介绍了php+ajax实现无刷新分页的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP+ajax实现无刷新分页方法分享给大家供大家参考。具体实现方法如下:

这是一款基于原生态的PHP +js +ajax 的分页程序实例,我们详细的从数据库创建到js,PHP,html页面的创建来告诉你如何实现ajax分页调用数据的方法

具体步骤如下:

一、创建数据库

sql语句如下:

代码如下:

INSERT INTO `tb_user` VALUES (1,'aaa'); INSERT INTO `tb_user` VALUES (2,'bbb'); INSERT INTO `tb_user` VALUES (3,'ccc'); INSERT INTO `tb_user` VALUES (4,'ddd'); INSERT INTO `tb_user` VALUES (5,'eee'); INSERT INTO `tb_user` VALUES (6,'fff'); INSERT INTO `tb_user` VALUES (7,'ggg'); INSERT INTO `tb_user` VALUES (8,'hhh'); INSERT INTO `tb_user` VALUES (9,'����');

二、ajaxpage.js文件代码如下:

代码如下:
函数,发送请求的函数 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="正在读取数据..."; reobj = obj; send_request(url); }
三、PHP调用代码如下:

代码如下:
PHP+ajax分页演示 <Meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

猜你在找的Ajax相关文章