XMLHttpRequest.onreadystatechange
UN EventHandler
che è invocato ogni volta che l'attributo readyState
cambia. la callback è invocata dal thread dell'interfaccia utente.
La proprietà XMLHttpRequest.onreadystatechange
contiene l'event handler
che deve essere invocato quando l'evento readystatechange (en-US)
si verifica, ovvero ogni volta in cui la proprietà readyState
del XMLHttpRequest
viene modificata.
Warning: This should not be used with synchronous requests and must not be used from native code. .
L'evento readystatechange
non si verificherà se una richiesta XMLHttpRequest
viene cancellata utilizzando il metodo abort().
UPDATE: it's firing in the latest version of browsers (Firefox 51.0.1, Opera 43.0.2442.991, Safari 10.0.3 (12602.4.8), Chrome 54.0.2840.71, Edge, IE11). Example here - just reaload page few times.
Syntax
XMLHttpRequest.onreadystatechange = callback;
Values
callback
è la funzione che viene eseguita quandoreadyState
cambia.
Example
var xhr = new XMLHttpRequest(),
method = "GET",
url = "https://developer.mozilla.org/";
xhr.open(method, url, true);
xhr.onreadystatechange = function () {
if(xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
console.log(xhr.responseText);
}
};
xhr.send();
Specifications
Specification | Status | Comment |
---|---|---|
XMLHttpRequest | Living Standard | WHATWG living standard |
Browser compatibility
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1 | (Yes) | 1.0 (1.7 or earlier) | 7[1] | (Yes) | 1.2 |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | ? | 1.0 | (Yes) | (Yes) | ? | ? | ? |
[1] Internet Explorer version 5 and 6 supported ajax calls using ActiveXObject()
.