JS 原生请求接口

var xmlhttp;
//创建xmlhttprequest对象
function createXMLHttpRequest(){
  xmlhttp=new XMLHttpRequest();  //这里要判断IE的写法
}
function startRequest(url) {
  createXMLHttpRequest();
  xmlhttp.open("GET",url,true);  //true:异步,false:同步
  xmlhttp.onreadystatechange=handleStateChange;
  xmlhttp.send(null);
}
function handleStateChange() {
  if(xmlhttp.readyState==4 && xmlhttp.status==200){
      var txt=xmlhttp.responseText;
      if(txt !=null && txt !=""){
        console.log(txt);
      }
  }
}
startRequest("url地址。。。。")
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐