当前位置:编程学习 > JS >>

Jquery创建ajax简单实例代码

Jquery创建ajax简单实例代码
function createXMLHttpRequest(){
  if(window.ActiveXObject){
      xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  }else if(window.XMLHttpRequest) {
      xmlHttp = new XMLHttpRequest();
  }
}
function startRequest(url,returnfun) {
   createXMLHttpRequest();
   xmlHttp.onreadystatechange =returnfun;
   xmlHttp.open("GET",url,true);
   xmlHttp.send(null);   

}
function weatherStateChange(){
  if(xmlHttp.readyState == 4){
   $("ipweather").innerHTML=xmlHttp.responseText;
  }
  
}

补充:网页制作,jquery
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,