Use XMLHttpRequest
(XHR) objects to interact with servers. You can retrieve data from a URL without having to do a full page refresh. This enables a Web page to update just part of a page without disrupting what the user is doing. XMLHttpRequest
is used heavily in Ajax programming.
Despite its name, XMLHttpRequest
can be used to retrieve any type of data, not just XML, and it supports protocols other than HTTP (including file
and ftp
).
If your communication needs involve receiving event or message data from the server, consider using server-sent events through the EventSource
interface. For full-duplex communication, WebSockets may be a better choice.
XMLHttpRequest()
This interface also inherits properties of XMLHttpRequestEventTarget
and of EventTarget
.
XMLHttpRequest.onreadystatechange
EventHandler
that is called whenever the readyState
attribute changes.XMLHttpRequest.readyState
Read only
unsigned short
, the state of the request.XMLHttpRequest.response
Read only
ArrayBuffer
, Blob
, Document
, JavaScript object, or a DOMString
, depending on the value of XMLHttpRequest.responseType
. that contains the response entity body.XMLHttpRequest.responseText
Read only
DOMString
that contains the response to the request as text, or null
if the request was unsuccessful or has not yet been sent.XMLHttpRequest.responseType
XMLHttpRequest.responseURL
Read only
XMLHttpRequest.responseXML
Read only Not available to workers
Document
containing the response to the request, or null
if the request was unsuccessful, has not yet been sent, or cannot be parsed as XML or HTML.XMLHttpRequest.status
Read only
unsigned short
with the status of the response of the request.XMLHttpRequest.statusText
Read only
DOMString
containing the response string returned by the HTTP server. Unlike XMLHTTPRequest.status
, this includes the entire text of the response message ("200 OK
", for example).Note: According to the HTTP/2 specification (8.1.2.4 Response Pseudo-Header Fields), HTTP/2 does not define a way to carry the version or reason phrase that is included in an HTTP/1.1 status line.
XMLHttpRequest.timeout
unsigned long
representing the number of milliseconds a request can take before automatically being terminated.XMLHttpRequestEventTarget.ontimeout
EventHandler
that is called whenever the request times out. XMLHttpRequest.upload
Read only
XMLHttpRequestUpload
, representing the upload process.XMLHttpRequest.withCredentials
Boolean
that indicates whether or not cross-site Access-Control
requests should be made using credentials such as cookies or authorization headers.XMLHttpRequest.channel
Read only
nsIChannel
. The channel used by the object when performing the request.XMLHttpRequest.mozAnon
Read only
XMLHttpRequest.mozSystem
Read only
XMLHttpRequest.mozBackgroundRequest
XMLHttpRequest.mozResponseArrayBuffer
Obsolete since Gecko 6 Read only
ArrayBuffer
. The response to the request, as a JavaScript typed array.XMLHttpRequest.multipart
Obsolete since Gecko 22
responseText
from progress events instead.onreadystatechange
as a property of the XMLHttpRequest
instance is supported in all browsers.
Since then, a number of additional event handlers have been implemented in various browsers (onload
, onerror
, onprogress
, etc.). See Using XMLHttpRequest.
More recent browsers, including Firefox, also support listening to the XMLHttpRequest
events via standard addEventListener()
APIs in addition to setting on*
properties to a handler function.
XMLHttpRequest.abort()
XMLHttpRequest.getAllResponseHeaders()
null
if no response has been received.XMLHttpRequest.getResponseHeader()
null
if either the response has not yet been received or the header doesn't exist in the response.XMLHttpRequest.open()
openRequest()
instead.XMLHttpRequest.overrideMimeType()
XMLHttpRequest.send()
XMLHttpRequest.setRequestHeader()
setRequestHeader()
after open()
, but before send()
.XMLHttpRequest.init()
XMLHttpRequest.openRequest()
open()
instead. See the documentation for open()
.XMLHttpRequest.sendAsBinary()
send()
method that sends binary data.Specification | Status | Comment |
---|---|---|
XMLHttpRequest | Living Standard | Live standard, latest version |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 1 | Yes | 1 | 7 | Yes | 1.2 |
onreadystatechange |
1 | 12 | 1 | 7
|
Yes | 1.2 |
readyState |
1 | 12 | 1 | 7 | Yes | 1.2 |
response |
Yes | 12 | Yes | ? | Yes | Yes |
responseText |
Yes | 12 | Yes | ?
|
Yes | 10 |
responseType |
31 | 12 | 6 | 10 | 18 | 7 |
responseURL |
37 | 14 | 32 | No | 24 | 8 |
responseXML |
Yes | 12 | Yes
|
Yes | Yes | Yes |
status |
1 | 12 | 1 | 7
|
Yes | 1.2 |
statusText |
1 | 12 | 1 | 7
|
Yes | 1.2 |
timeout |
29 | 12 | 12 | 8 | 17
|
Yes |
upload |
1 | 12 | Yes | ? | Yes | 10 |
withCredentials |
Yes | 12 | 3.5
|
10
|
12 | 4 |
abort |
18 | 12 | Yes | 7
|
Yes | 1.2 |
getAllResponseHeaders |
1 | 12 | 4
|
7
|
Yes | 1.2 |
getResponseHeader |
1 | 12 | Yes
|
7
|
Yes | 1.2 |
open |
1 | 12 | Yes
|
7
|
Yes | 1.2 |
overrideMimeType |
1 | 12 | Yes | 11
|
Yes | 1.2 |
send |
1 | 12 | 1 | 7
|
Yes | 1.2 |
sendAsBinary
|
No
|
No | 2 — 31 | No | No | No |
setRequestHeader |
1 | 12 | Yes | 7
|
Yes | 1.2 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | 18 | 12 | 4 | Yes | ? | Yes |
onreadystatechange |
1 | 18 | Yes | 4 | Yes | ? | Yes |
readyState |
Yes | 18 | Yes | 4 | Yes | ? | Yes |
response |
Yes | Yes | Yes | Yes | Yes | ? | Yes |
responseText |
Yes | Yes | Yes | Yes | Yes | ? | Yes |
responseType |
55 | 55 | Yes | 50 | Yes | ? | 6.0 |
responseURL |
37 | 37 | ? | 32 | 24 | ? | Yes |
responseXML |
Yes | Yes | Yes | Yes
|
Yes | Yes | Yes |
status |
Yes | Yes | Yes | 4 | Yes | ? | Yes |
statusText |
Yes | 18 | Yes | 4 | Yes | ? | Yes |
timeout |
Yes | Yes | Yes | Yes | Yes | ? | Yes |
upload |
Yes | 18 | ? | ? | Yes | ? | Yes |
withCredentials |
Yes | Yes | ? | 4
|
Yes | ? | Yes |
abort |
Yes | Yes | Yes | Yes | Yes | ? | Yes |
getAllResponseHeaders |
Yes | Yes | Yes | 4
|
Yes | ? | Yes |
getResponseHeader |
Yes | 18 | Yes | Yes
|
Yes | ? | Yes |
open |
Yes | 18 | Yes | Yes
|
Yes | Yes | Yes |
overrideMimeType |
Yes | 18 | Yes | Yes | Yes | Yes | Yes |
send |
Yes | 18 | Yes | 4 | Yes | Yes | Yes |
sendAsBinary
|
No
|
No
|
No | 4 — 31 | No | No | No |
setRequestHeader |
Yes | 18 | Yes | Yes | Yes | Yes | Yes |
XMLSerializer
: Serializing a DOM tree into XMLXMLHttpRequest
:
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest