XMLHttpRequest.abort()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
O método XMLHttpRequest.abort() aborta a requisição se ela já tiver sido enviada. Quando uma requisição é abortada, o seu readyState é modificado para 0 (Desativado), mas o evento readystatechange não é disparado.
Sitaxe
xhrInstance.abort();
Parâmetros
Nenhum.
Retorno
Nenhum.
Exemplo
js
var xhr = new XMLHttpRequest(),
method = "GET",
url = "https://developer.mozilla.org/";
xhr.open(method, url, true);
xhr.send();
xhr.abort();
Especificações
Specification |
---|
XMLHttpRequest Standard # the-abort()-method |
Compatibilidade com navegadores
BCD tables only load in the browser