Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

XMLHttpRequest.abort()

这篇翻译不完整。请帮忙从英语翻译这篇文章

XMLHttpRequest.abort() 方法将终止请求,如果该请求已被发出。当一个请求被终止,它的 readyState 属性将被置为0( UNSENT ),但是并不触发 readystatechange 事件。

语法

xhrInstance.abort();

参数

无。

返回值

空。

示例

var xhr = new XMLHttpRequest(),
    method = "GET",
    url = "https://developer.mozilla.org/";
xhr.open(method,url,true);

xhr.send();

xhr.abort();

规范

规范 状态 注释
XMLHttpRequest Living Standard WHATWG living standard

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 1 ? 5[1]
7
(Yes) 1.2
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 1.0 (Yes) ? ? ?

[1] 这项功能是通过 ActiveXObject() 来实现的。IE浏览器从版本7开始就实现了标准的 XMLHttpRequest 。

相关链接

文档标签和贡献者

 此页面的贡献者: holynewbie
 最后编辑者: holynewbie,