XHR : status 等于0

为什么status HTTP状态码会是0?

 

 

 

<body>

  <input id="con_" type="text" value=" " >

  <button id="submit_">submit</button>

 

<script>

  submit_.onclick = function(){

    console.log(1)

    var xhr =new XMLHttpRequest();

    xhr.open('get','datas.js',true);

    xhr.send();

    xhr.onload = function(){

    console.log(2)

    if( xhr.readyState == 4 && xhr.status === 0 ){

      console.log(3)

      // console.log(xhr.response);

    }

 

  }

 

}

 

 

 

</script>

</body>


qq_遁去的一_1
浏览 2239回答 1
1回答

呼啦一阵风

网络都不通,列html有什么用
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript