程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> [原創]ajax 實現用戶注冊功能教程二

[原創]ajax 實現用戶注冊功能教程二

編輯:關於PHP編程

[原創]ajax 實現用戶注冊功能教程二','

//

本教程由本站原創,轉載請注明來處

作者:www.drise.cn

郵箱:[email protected]

QQ:271728967

//

上面第一個reg.php文件己經做好了,我就來做第二步

var xmlHttp = false;
function ajaxcreate(){//這裡是創建xmlhttpt對像

try {
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
 } catch (e) {

try {
   xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 } catch (e2) {

  xmlHttp = false;
 }

 }


if (!xmlHttp && typeof XMLHttpRequest != \\\'undefined\\\') {


  xmlHttp = new XMLHttpRequest();


 }


if(!xmlHttp){alert(\\\'Create Xmlhttp Fail \\\');return false;}


}

function ajax(){//這裡是接到reg.php onblur()事件後要進行的操作,

 ajaxcreate();

 var xmvalue=document.getElementById("xm").value;


 var url="/boke/blog/type.php?txt="+encodeURI(xmvalue);


 if (xmvalue== null || xmvalue.length>20 || xmvalue == "") return false;


 xmlHttp.open("POST",url,true); 


 xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");


 xmlHttp.send(xmvalue); 


 xmlHttp.onreadystatechange=returnstate; 


}


function returnstate(){


 if(xmlHttp.readyState != 4 ){


  document.getElementById("divxm").innerHTML="<div id=\\\'phperblog_showinfo_red\\\'><font color=red>正在驗證中,請稍後...</font></div>";


 }

 if(xmlHttp.readyState == 4 ){


  document.getElementById("divxm").innerHTML=xmlHttp.responseText;


 }


}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved