码迷,mamicode.com
首页 > Web开发 > 详细

怎样终止HTTP请求

时间:2019-09-20 18:24:47      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:str   http请求   stat   new   xmlhttp   span   bsp   col   function   

使用 xhr.abort()

var xhr = new XMLHttpRequest();
xhr.open(‘GET‘, ‘http://www.example.com/page.php‘, true);
setTimeout(function () {
  if (xhr) {
    xhr.abort();
    xhr = null;
  }
}, 5000);
xhr.send(null);

 

注意: xhr.abort() 会直接终止请求, xhr.readyState值变为4, xhr.onreadystatechange事件触发.

 

怎样终止HTTP请求

标签:str   http请求   stat   new   xmlhttp   span   bsp   col   function   

原文地址:https://www.cnblogs.com/aisowe/p/11558638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!