php+ajax无刷新分页实现了代码的精化,最近在阅读了Ajax教程之后,错新技术频道小编为大家整理了关于php+ajax无刷新分页实例详解,下面一起来学习一下吧!
分享给大家供大家参考,具体如下:
ajax_page_show_userinfo.php页面如下:
用户名 | 用户密码 |
<?php echo $array['username'];?> | <?php echo $array['password'];?> |
$pagenav
"; ?>js文件下的ajaxpage.js:
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.getElementByIdx(reobj).innerHTML=http_request.responseText; } else{//页面不正常 alert("您所请求的页面不正常!"); } }}function dopage(obj,url){ //document.getElementByIdx(obj).innerHTML="正在读取数据..."; send_request(url); reobj=obj;}上文是php+ajax无刷新分页实例详解,相信大家都有了一定的了解,想要了解更多的技术信息,请继续关注错新技术频道吧!
新闻热点
疑难解答