Description:Perform an asynchronous HTTP (Ajax) request.
depends on dataType)dataType to its MIME type, which gets sent in theAccept request header. This header tells the server what kind of response it will accept in return. For example, the following defines a custom typemycustomtype to be sent with the request:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
converters for this to work properly.true)true by default). If you need synchronous requests, set this option tofalse. Cross-domain requests anddataType: "jsonp" requests do not support synchronous operation. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active.As of jQuery 1.8, the use ofasync: false with jqXHR ($.Deferred) is deprecated; you must use the success/error/complete callback options instead of the corresponding methods of the jqXHR object such asjqXHR.done().false in thebeforeSend function will cancel the request.As of jQuery 1.5, thebeforeSend option will be called regardless of the type of request.true, false for dataType 'script' and 'jsonp')false, it will force requested pages not to be cached by the browser.Note: Settingcache to false will only work correctly with HEAD and GET requests. It works by appending "_={timestamp}" to the GET parameters. The parameter is not needed for other types of requests, except in IE8 when a POST is made to a URL that has already been requested by a GET.success anderror callbacks are executed). The function gets passed two arguments: The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string categorizing the status of the request ("success","notmodified","nocontent","error","timeout","abort", or"parsererror").As of jQuery 1.5, thecomplete setting can accept an array of functions. Each function will be called in turn. This is anAjax Event.'application/x-www-form-urlencoded; charset=UTF-8')$.ajax(), then it is always sent to the server (even if no data is sent). As of jQuery 1.6 you can passfalse to tell jQuery to not set any content type header.Note: The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding.Note: For cross-domain requests, setting the content type to anything other thanapplication/x-www-form-urlencoded,multipart/form-data, ortext/plain will trigger the browser to send a preflight OPTIONS request to the server.$.ajaxSettings merged with the settings passed to$.ajax). For example, specifying a DOM element as the context will make that the context for thecomplete callback of a request, like so:1 2 3 4 5 6 |
|
{"* text": window.String, "text html": true, "text json": jQuery.parseJSON, "text xml": jQuery.parseXML})false for same-domain requests, true for cross-domain requests)true. This allows, for example, server-side redirection to another domain. (version added:1.5)Data to be sent to the server. If the HTTP method is one that cannot have an entity body, such as GET, thedata is appended to the URL.
Whendata is an object, jQuery generates the data string from the object's key/value pairs unless theprocessData option is set tofalse. For example,{ a: "bc", d: "e,f" } is converted to the string"a=bc&d=e%2Cf". If the value is an array, jQuery serializes multiple values with same key based on the value of thetraditional setting (described below). For example,{ a: [1,2] } becomes the string"a%5B%5D=1&a%5B%5D=2" with the defaulttraditional: false setting.
Whendata is passed as a string it shouldalready be encoded using the correct encoding forcontentType, which by default isapplication/x-www-form-urlencoded.
In requests withdataType: "json" ordataType: "jsonp", if the string contains a double question mark (??) anywhere in the URL or a single question mark (?) in the query string, it is replaced with a value generated by jQuery that is unique for each copy of the library on the page (e.g.jQuery21406515378922229067_1479880736745).
Intelligent Guess (xml, json, script, or html))"xml": Returns a XML document that can be processed via jQuery."html": Returns HTML as plain text; included script tags are evaluated when inserted in the DOM."script": Evaluates the response as JavaScript and returns it as plain text. Disables caching by appending a query string parameter,_=[TIMESTAMP], to the URL unless thecache option is set totrue.Note: This will turn POSTs into GETs for remote-domain requests. Prior to jQuery 3.5.0, unsuccessful HTTP responses with a scriptContent-Type were still executed."json": Evaluates the response as JSON and returns a JavaScript object. Cross-domain"json" requests that have a callback placeholder, e.g.?callback=?, are performed usingJSONP unless the request includesjsonp: false in its request options. The JSON data is parsed in a strict manner; any malformed JSON is rejected and a parse error is thrown. As of jQuery 1.9, an empty response is also rejected; the server should return a response ofnull or{} instead. (Seejson.org for more information on proper JSON formatting.)"jsonp": Loads in a JSON block usingJSONP. Adds an extra"?callback=?" to the end of your URL to specify the callback. Disables caching by appending a query string parameter,"_=[TIMESTAMP]", to the URL unless thecache option is set totrue."text": A plain text string."text xml" for the dataType. You can also make a JSONP request, have it received as text, and interpreted by jQuery as XML:"jsonp text xml". Similarly, a shorthand string such as"jsonp xml" will first attempt to convert from jsonp to xml, and, failing that, convert from jsonp to text, and then from text to xml.null) are"timeout","error","abort", and"parsererror". When an HTTP error occurs,errorThrown receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error." (in HTTP/2 it may instead be an empty string)As of jQuery 1.5, theerror setting can accept an array of functions. Each function will be called in turn.Note:This handler is not called for cross-domain scripts and cross-domain JSONP requests. This is anAjax Event.true)true. Set tofalse to prevent the global handlers likeajaxStart orajaxStop from being triggered. This can be used to control variousAjax Events.{})X-Requested-With: XMLHttpRequest is always added, but its defaultXMLHttpRequest value can be changed here. Values in theheaders setting can also be overwritten from within thebeforeSend function. (version added:1.5)false)false, ignoring the header. In jQuery 1.4 this technique also checks the 'etag' specified by the server to catch unmodified data.depends on current location protocol)file,*-extension, andwidget. If theisLocal setting needs modification, it is recommended to do so once in the$.ajaxSetup() method. (version added:1.5.1){jsonp:'onJSONPLoad'} would result in'onJSONPLoad=?' passed to the server.As of jQuery 1.5, setting thejsonp option tofalse prevents jQuery from adding the "?callback" string to the URL or attempting to use "=?" for transformation. In this case, you should also explicitly set thejsonpCallback setting. For example,{ jsonp: false, jsonpCallback: "callbackName" }. If you don't trust the target of your Ajax requests, consider setting thejsonp property tofalse for security reasons.jsonpCallback is set to the return value of that function.'GET')true)data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option tofalse.nonce,integrity, orcrossorigin attributes to satisfy Content Security Policy requirements. (version added:3.4)charset attribute on the script tag used in the request. Used when the character set on the local page is not the same as the one on the remote script. Alternatively, thecharset attribute can be specified inscriptAttrs instead, which will also ensure the use of the "script" transport.{})An object of numeric HTTP codes and functions to be called when the response has the corresponding code. For example, the following will alert when the response status is a 404:
1 2 3 4 5 6 7 |
|
If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error (including 3xx redirects to another domain), they take the same parameters as theerror callback. 3xx redirects to the same domain are handled by the browser and are not controlled by jQuery.
dataType parameter or thedataFilter callback function, if specified; a string describing the status; and thejqXHR (in jQuery 1.4.x, XMLHttpRequest) object.As of jQuery 1.5,the success setting can accept an array of functions. Each function will be called in turn. This is anAjax Event.$.ajax call is made; if several other requests are in progress and the browser has no connections available, it is possible for a request to time out before it can be sent.In jQuery 1.4.x and below, the XMLHttpRequest object will be in an invalid state if the request times out; accessing any object members may throw an exception.In Firefox 3.0+ only, script and JSONP requests cannot be cancelled by a timeout; the script will run even if it arrives after the timeout period.true if you wish to use the traditional style ofparam serialization.'GET')method. You should usetype if you're using versions of jQuery prior to 1.9.0.The current page)ActiveXObject when available (IE), the XMLHttpRequest otherwise)An object of fieldName-fieldValue pairs to set on the nativeXHR object. For example, you can use it to setwithCredentials totrue for cross-domain requests if needed.
1 2 3 4 5 6 |
|
In jQuery 1.5, thewithCredentials property was not propagated to the nativeXHR and thus CORS requests requiring it would ignore this flag. For this reason, we recommend using jQuery 1.5.1+ should you require the use of it.
The$.ajax() function underlies all Ajax requests sent by jQuery. It is often unnecessary to directly call this function, as several higher-level alternatives like$.get() and.load() are available and are easier to use. If less common options are required, though,$.ajax() can be used more flexibly.
At its simplest, the$.ajax() function can be called with no arguments:
1 |
|
Note: Default settings can be set globally by using the$.ajaxSetup() function.
This example, using no options, loads the contents of the current page, but does nothing with the result. To use the result, you can implement one of the callback functions.
The jQuery XMLHttpRequest (jqXHR) object returned by$.ajax()as of jQuery 1.5 is a superset of the browser's native XMLHttpRequest object. For example, it containsresponseText andresponseXML properties, as well as agetResponseHeader() method. When the transport mechanism is something other than XMLHttpRequest (for example, a script tag for a JSONP request) thejqXHR object simulates native XHR functionality where possible.
As of jQuery 1.5.1, thejqXHR object also contains theoverrideMimeType() method (it was available in jQuery 1.4.x, as well, but was temporarily removed in jQuery 1.5). The.overrideMimeType() method may be used in thebeforeSend() callback function, for example, to modify the response content-type header:
1 2 3 4 5 6 7 8 9 10 11 |
|
The jqXHR objects returned by$.ajax() as of jQuery 1.5 implement the Promise interface, giving them all the properties, methods, and behavior of a Promise (seeDeferred object for more information). These methods take one or more function arguments that are called when the$.ajax() request terminates. This allows you to assign multiple callbacks on a single request, and even to assign callbacks after the request may have completed. (If the request is already complete, the callback is fired immediately.) Available Promise methods of the jqXHR object include:
An alternative construct to the success callback option, refer todeferred.done() for implementation details.
An alternative construct to the error callback option, the.fail() method replaces the deprecated.error() method. Refer todeferred.fail() for implementation details.
An alternative construct to the complete callback option, the.always() method replaces the deprecated.complete() method.
In response to a successful request, the function's arguments are the same as those of.done(): data, textStatus, and the jqXHR object. For failed requests the arguments are the same as those of.fail(): the jqXHR object, textStatus, and errorThrown. Refer todeferred.always() for implementation details.
Incorporates the functionality of the.done() and.fail() methods, allowing (as of jQuery 1.8) the underlying Promise to be manipulated. Refer todeferred.then() for implementation details.
Deprecation Notice: ThejqXHR.success(),jqXHR.error(), andjqXHR.complete() callbacks are removed as of jQuery 3.0. You can usejqXHR.done(),jqXHR.fail(), andjqXHR.always() instead.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
Thethis reference within all callbacks is the object in thecontext option passed to$.ajax in the settings; ifcontext is not specified,this is a reference to the Ajax settings themselves.
For backward compatibility withXMLHttpRequest, ajqXHR object will expose the following properties and methods:
readyStateresponseXML and/orresponseText when the underlying request responded with xml and/or text, respectivelystatusstatusText (may be an empty string in HTTP/2)abort( [ statusText ] )getAllResponseHeaders() as a stringgetResponseHeader( name )overrideMimeType( mimeType )setRequestHeader( name, value ) which departs from the standard by replacing the old value with the new one rather than concatenating the new value to the old onestatusCode( callbacksByStatusCode )Noonreadystatechange mechanism is provided, however, sincedone,fail,always, andstatusCode cover all conceivable requirements.
ThebeforeSend,error,dataFilter,success andcomplete options all accept callback functions that are invoked at the appropriate times.
As of jQuery 1.5, thefail anddone, and, as of jQuery 1.6,always callback hooks are first-in, first-out managed queues, allowing for more than one callback for each hook. SeeDeferred object methods, which are implemented internally for these$.ajax() callback hooks.
The callback hooks provided by$.ajax() are as follows:
beforeSend callback option is invoked; it receives thejqXHR object and thesettings object as parameters.error callback option is invoked, if the request fails. It receives thejqXHR, a string indicating the error type, and an exception object if applicable. Some built-in errors will provide a string as the exception object: "abort", "timeout", "No Transport".dataFilter callback option is invoked immediately upon successful receipt of response data. It receives the returned data and the value ofdataType, and must return the (possibly altered) data to pass on tosuccess.success callback option is invoked, if the request succeeds. It receives the returned data, a string containing the success code, and thejqXHR object..done(),.fail(),.always(), and.then() — are invoked, in the order they are registered.complete callback option fires, when the request finishes, whether in failure or success. It receives thejqXHR object, as well as a string containing the success or error code.Different types of response to$.ajax() call are subjected to different kinds of pre-processing before being passed to the success handler. The type of pre-processing depends by default upon the Content-Type of the response, but can be set explicitly using thedataType option. If thedataType option is provided, the Content-Type header of the response will be disregarded.
The available data types aretext,html,xml,json,jsonp, andscript.
Iftext orhtml is specified, no pre-processing occurs. The data is simply passed on to the success handler, and made available through theresponseText property of thejqXHR object.
Ifxml is specified, the response is parsed usingjQuery.parseXML before being passed, as anXMLDocument, to the success handler. The XML document is made available through theresponseXML property of thejqXHR object.
Ifjson is specified, the response is parsed usingjQuery.parseJSON before being passed, as an object, to the success handler. The parsed JSON object is made available through theresponseJSON property of thejqXHR object.
Ifscript is specified,$.ajax() will execute the JavaScript that is received from the server before passing it on to the success handler as a string.
Ifjsonp is specified,$.ajax() will automatically append a query string parameter of (by default)callback=? to the URL. Thejsonp andjsonpCallback properties of the settings passed to$.ajax() can be used to specify, respectively, the name of the query string parameter and the name of the JSONP callback function. The server should return valid JavaScript that passes the JSON response into the callback function.$.ajax() will execute the returned JavaScript, calling the JSONP callback function, before passing the JSON object contained in the response to the$.ajax() success handler.
For more information on JSONP, see theoriginal post detailing its use.
By default, Ajax requests are sent using the GET HTTP method. If the POST method is required, the method can be specified by setting a value for thetype option. This option affects how the contents of thedata option are sent to the server. POST data will always be transmitted to the server using UTF-8 charset, per the W3C XMLHTTPRequest standard.
Thedata option can contain either a query string of the formkey1=value1&key2=value2, or an object of the form{key1: 'value1', key2: 'value2'}. If the latter form is used, the data is converted into a query string usingjQuery.param() before it is sent. This processing can be circumvented by settingprocessData tofalse. The processing might be undesirable if you wish to send an XML object to the server; in this case, change thecontentType option fromapplication/x-www-form-urlencoded to a more appropriate MIME type.
Theglobal option prevents handlers registered for theajaxSend,ajaxError, and similar events from firing when this request would trigger them. This can be useful to, for example, suppress a loading indicator that was implemented with anajaxSend handler if the requests are frequent and brief. With cross-domain script and JSONP requests, the global option is automatically set tofalse. See the descriptions of these methods below for more details.
If the server performs HTTP authentication before providing a response, the user name and password pair can be sent via theusername andpassword options.
Ajax requests are time-limited, so errors can be caught and handled to provide a better user experience. Request timeouts are usually either left at their default or set as a global default using$.ajaxSetup() rather than being overridden for specific requests with thetimeout option.
By default, requests are always issued, but the browser may serve results out of its cache. To disallow use of the cached results, setcache tofalse. To cause the request to report failure if the asset has not been modified since the last request, setifModified totrue.
ThescriptCharset allows the character set to be explicitly specified for requests that use a<script> tag (that is, a type ofscript orjsonp). This is useful if the script and host page have differing character sets.
The first letter in Ajax stands for "asynchronous," meaning that the operation occurs in parallel and the order of completion is not guaranteed. Theasync option to$.ajax() defaults totrue, indicating that code execution can continue after the request is made. Setting this option tofalse (and thus making the call no longer asynchronous) is strongly discouraged, as it can cause the browser to become unresponsive.
The$.ajax() function returns theXMLHttpRequest object that it creates. Normally jQuery handles the creation of this object internally, but a custom function for manufacturing one can be specified using thexhr option. The returned object can generally be discarded, but does provide a lower-level interface for observing and manipulating the request. In particular, calling.abort() on the object will halt the request before it completes.
As of jQuery 1.5, jQuery's Ajax implementation includesprefilters,transports, and converters that allow you to extend Ajax with a great deal of flexibility.
$.ajax() converters support mapping data types to other data types. If, however, you want to map a custom data type to a known type (e.gjson), you must add a correspondence between the response Content-Type and the actual data type using thecontents option:
1 2 3 4 5 6 7 8 9 10 11 |
|
This extra object is necessary because the response Content-Types and data types never have a strict one-to-one correspondence (hence the regular expression).
To convert from a supported type (e.gtext,json) to a custom data type and back again, use another pass-through converter:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
The above now allows passing fromtext tomycustomtype and thenmycustomtype tojson.
Save some data to the server and notify the user once it's complete.
1 2 3 4 5 6 7 8 |
|
Retrieve the latest version of an HTML page.
1 2 3 4 5 6 7 |
|
Send an xml document as data to the server. By setting the processData option tofalse, the automatic conversion of data to strings is prevented.
1 2 3 4 5 6 7 8 |
|
Send an id as data to the server, save some data to the server, and notify the user once it's complete. If the request fails, alert the user.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Load and execute a JavaScript file.
1 2 3 4 5 |
|