AJAX 核心三部曲

 

  
  
  
  
  1. 〈script lanuage = "javaScript"〉  
  2. //创建对象  
  3. function createXMLHttpRequest(){  
  4. if(window.ActiveXObject){  
  5. xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");   
  6. }  
  7. else if(window.XMLHttpRequest){  
  8. xmlHttp = new XMLHttpRequest();   
  9. }  
  10. }  
  11. //前台界面事件调用的函数  
  12. function checkName(){  
  13. createXMLHttpRequest();   
  14. xmlHttp.onreadystatechange = handleStateChange;   
  15. var sql = "UserReg.aspx?";   
  16. xmlHttp.open("GET",sql,true);   
  17. xmlHttp.send(null);   
  18. }  
  19. //和服务器交互期间执行的函数  
  20. function handleStateChange(){  
  21. if(xmlHttp.readyState == 4){  
  22. if(xmlHttp.status == 200){   
  23. document.getElementById("divx").innerHTML = xmlHttp.responseText;   
  24. }  
  25. }  
  26. }  
  27. 〈script〉  

 

你可能感兴趣的:(Ajax)