前端之家收集整理的这篇文章主要介绍了
AJAX 核心三部曲,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
- 〈scriptlanuage="javaScript"〉
- functioncreateXMLHttpRequest(){
- if(window.ActiveXObject){
- xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
- }
- elseif(window.XMLHttpRequest){
- xmlHttp=newXMLHttpRequest();
- }
- }
- functioncheckName(){
- createXMLHttpRequest();
- xmlHttp.onreadystatechange=handleStateChange;
- varsql="UserReg.aspx?";
- xmlHttp.open("GET",sql,true);
- xmlHttp.send(null);
- }
- functionhandleStateChange(){
- if(xmlHttp.readyState==4){
- if(xmlHttp.status==200){
- document.getElementById("divx").innerHTML=xmlHttp.responseText;
- }
- }
- }
- 〈script〉