Description: Perform an asynchronous HTTP (Ajax) request.
depends on DataType
)true
)true
by default). If you need synchronous requests, set this option to
false
. Cross-domain requests and dataType: "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 of async: 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 as
jqXHR.done()
or the deprecated jqXHR.success()
.false
in the beforeSend
function will cancel the request.
As of jQuery 1.5, the beforeSend
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: Setting cache
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
and error
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"
, "error"
, "timeout"
, "abort"
, or
"parsererror"
). As of jQuery 1.5, the complete
setting can accept an array of functions. Each function will be called in turn. This is an
Ajax Event.'application/x-www-form-urlencoded; charset=UTF-8'
)$.ajax()
, then it is always sent to the server (even if no data is sent). 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 than
application/x-www-form-urlencoded
, multipart/form-data
, or
text/plain
will trigger the browser to send a preflight OPTIONS request to the server.'application/x-www-form-urlencoded; charset=UTF-8'
。utf-8编码,国际通用编码,默认就行了,适用绝大多数情况。$.ajaxSettings
merged with the settings passed to
$.ajax
). For example, specifying a DOM element as the context will make that the context for the
complete
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}
){"* 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)FALSE
。processData
option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the
traditional
setting (described below).data以键值对的形式
向服务器发送数据,通常可以将表单里面的数据传递$("#form").serialize()
。dataFilter数据过滤器
。Intelligent Guess (xml, json, script, or html)
)cache
option is set to true
. Note: This will turn POSTs into GETs for remote-domain requests.
null
or {}
instead. (See
json.org for more information on proper JSON formatting.)cache
option is set to true
.dataType返回的数据类型,通常有XML、json、script、text和HTML等
。如果不设置,jQuery会根据响应的MIME类型设置。用的最多的是json、XML和text。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."
As of jQuery 1.5, the error
setting can accept an array of functions. Each function will be called in turn.
Note: This handler is not called for cross-domain script and cross-domain JSONP requests. This is an
Ajax Event.
error请求失败时调用的函数,有三个参数 jqXHR、textStatus、errorThrown
。textStatus可能的值:timeout、error、abort和parseerror。true
)true
. Set to false
to prevent the global handlers like
ajaxStart
or ajaxStop
from being triggered. This can be used to control various
Ajax Events.global请求时是否触发全局的ajax事件,默认是TRUE
。{}
)X-Requested-With: XMLHttpRequest
is always added, but its default
XMLHttpRequest
value can be changed here. Values in the headers
setting can also be overwritten from within the
beforeSend
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
, and widget
. If the
isLocal
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 the jsonp
option to
false
prevents jQuery from adding the "?callback" string to the URL or attempting to use "=?" for transformation. In this case, you should also explicitly set the
jsonpCallback
setting. For example, { jsonp: false, jsonpCallback: "callbackName" }
OnJSONPLoad=?
。在jQuery1.5后,设置{
jsonp: false, jsonpCallback: "callbackName" }。
jsonpCallback
is set to the return value of that function. true
)false
.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.{}
)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 redirect), they take the same parameters as the
error
callback.
dataType
parameter or the dataFilter
callback function, if specified; a string describing the status; and the
jqXHR
(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 an
Ajax 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 of
param serialization.'GET'
)The current page
)ActiveXObject when available (IE), the XMLHttpRequest otherwise
)An object of fieldName-fieldValue pairs to set on the native
XHR
object. For example, you can use it to set
withCredentials
to true
for cross-domain requests if needed.
1
2
3
4
5
6
|
|
In jQuery 1.5, the withCredentials
property was not propagated to the native
XHR
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 contains
responseText
and responseXML
properties, as well as a
getResponseHeader()
method. When the transport mechanism is something other than XMLHttpRequest (for example, a script tag for a JSONP request) the
jqXHR
object simulates native XHR functionality where possible.
As of jQuery 1.5.1, the jqXHR
object also contains the
overrideMimeType()
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 the beforeSend()
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 (see
Deferred 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, the
.done()
method replaces the deprecated jqXHR.success()
method. Refer to
deferred.done()
for implementation details.
An alternative construct to the error callback option, the
.fail()
method replaces the deprecated .error()
method. Refer to
deferred.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 to
deferred.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 to
deferred.then()
for implementation details.
Deprecation Notice: The jqXHR.success()
,
jqXHR.error()
, and jqXHR.complete()
callbacks are deprecated as of jQuery 1.8. To prepare your code for their eventual removal, use
jqXHR.done()
, jqXHR.fail()
, and jqXHR.always()
instead.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
|
//解释一下:done、fail和always分别代替success、error和complete,前者是官方推荐。
The this
reference within all callbacks is the object in the
context
option passed to $.ajax
in the settings; if
context
is not specified, this
is a reference to the Ajax settings themselves.
For backward compatibility with XMLHttpRequest
, a
jqXHR
object will expose the following properties and methods:
readyState
status
statusText
responseXML
and/or responseText
when the underlying request responded with xml and/or text, respectivelysetRequestHeader(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 onegetAllResponseHeaders()
getResponseHeader()
statusCode()
abort()
No onreadystatechange
mechanism is provided, however, since
done
, fail
, always
, and statusCode
cover all conceivable requirements.
The beforeSend
, error
,
dataFilter
, success
and complete
options all accept callback functions that are invoked at the appropriate times.
As of jQuery 1.5, the fail
and
done
, 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. See
Deferred 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 the
jqXHR
object and the settings
object as parameters.error
callback option is invoked, if the request fails. It receives the
jqXHR
, 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 of
dataType
, and must return the (possibly altered) data to pass on to
success
.success
callback option is invoked, if the request succeeds. It receives the returned data, a string containing the success code, and the
jqXHR
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 the
jqXHR
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 the dataType
option. If the
dataType
option is provided, the Content-Type header of the response will be disregarded.
The available data types are text
,
html
, xml
, json
, jsonp
, and script
.
If text
or html
is specified, no pre-processing occurs. The data is simply passed on to the success handler, and made available through the
responseText
property of the jqXHR
object.
//解释一下:dataType是简单的字符串。
If xml
is specified, the response is parsed using
jQuery.parseXML
before being passed, as an
XMLDocument
, to the success handler. The XML document is made available through the
responseXML
property of the jqXHR
object.
//解释一下:dataType为XML,用jquery.parseXML转换为一个XML树。
If json
is specified, the response is parsed using
jQuery.parseJSON
before being passed, as an object, to the success handler. The parsed JSON object is made available through the
responseJSON
property of the jqXHR
object.
//解释一下:dataType为json,用jquery.parseJSON处理。
If script
is specified, $.ajax()
will execute the Javascript that is received from the server before passing it on to the success handler as a string.
If jsonp
is specified, $.ajax()
will automatically append a query string parameter of (by default)
callback=?
to the URL. The jsonp
and jsonpCallback
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 the original 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 the
type
option. This option affects how the contents of the data
option are sent to the server. POST data will always be transmitted to the server using UTF-8 charset, per the W3C XMLHTTPRequest standard.
The data
option can contain either a query string of the form
key1=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 using
jQuery.param()
before it is sent. This processing can be