jQuery API

jQuery.ajax()

jQuery.ajax( settings ) Returns: XMLHttpRequest

Description: Perform an asynchronous HTTP (Ajax) request.

  • version added: 1.0jQuery.ajax( settings )

    settingsA set of key/value pairs that configure the Ajax request. All options are optional. A default can be set for any option with $.ajaxSetup().

    asyncBoolean
    Default: true

    By default, all requests are sent asynchronous (i.e. this is set to 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.

    beforeSend(XMLHttpRequest)Function

    A pre-callback to modify the XMLHttpRequest object before it is sent. Use this to set custom headers etc. The XMLHttpRequest is passed as the only argument. This is an Ajax Event. You may return false in function to cancel the request.

    cacheBoolean
    Default: true, false for dataType 'script' and 'jsonp'

    If set to false it will force the pages that you request to not be cached by the browser.

    complete(XMLHttpRequest, textStatus)Function

    A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed two arguments: The XMLHttpRequest object and a string categorizing the status of the request ("success""notmodified""error""timeout", or "parsererror"). This is an Ajax Event.

    contentTypeString
    Default: 'application/x-www-form-urlencoded'

    When sending data to the server, use this content-type. Default is "application/x-www-form-urlencoded", which is fine for most cases. If you explicitly pass in a content-type to $.ajax() then it'll always be sent to the server (even if no data is sent). Data will always be transmitted to the server using UTF-8 charset; you must decode this appropriately on the server side.

    contextObject

    This object will be made the context of all Ajax-related callbacks. For example specifying a DOM element as the context will make that the context for the complete callback of a request, like so:

    $.ajax({ url: "test.html", context: document.body, success: function(){
            $(this).addClass("done");
          }});

     

    dataObject, String

    Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See 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).

    dataFilter(data, type)Function

    A function to be used to handle the raw responsed data of XMLHttpRequest.This is a pre-filtering function to sanitize the response.You should return the sanitized data.The function gets passed two arguments: The raw data returned from the server, and the 'dataType' parameter.

    dataTypeString
    Default: Intelligent Guess (xml, json, script, or html)

    The type of data that you're expecting back from the server. If none is specified, jQuery will intelligently try to get the results, based on the MIME type of the response (an XML MIME type will yield XML, in 1.4 JSON will yield a JavaScript object, in 1.4 script will execute the script, and anything else will be returned as a string). The available types (and the result passed as the first argument to your success callback) are:

    • "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 unless option "cache" is used. Note: This will turn POSTs into GETs for remote-domain requests.
    • "json": Evaluates the response as JSON and returns a JavaScript object. In jQuery 1.4 the JSON data is parsed in a strict manner; any malformed JSON is rejected and a parse error is thrown. (See json.org for more information on proper JSON formatting.)
    • "jsonp": Loads in a JSON block using JSONP. Will add an extra "?callback=?" to the end of your URL to specify the callback.
    • "text": A plain text string.

     

    error(XMLHttpRequest, textStatus, errorThrown)Function

    A function to be called if the request fails. The function is passed three arguments: The XMLHttpRequest object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "notmodified" and "parsererror". This is an Ajax Event.

    globalBoolean
    Default: true

    Whether to trigger global Ajax event handlers for this request. The default is 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.

    ifModifiedBoolean
    Default: false

    Allow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value is false, ignoring the header. In jQuery 1.4 this technique also checks the 'etag' specified by the server to catch unmodified data.

    jsonpString

    Override the callback function name in a jsonp request. This value will be used instead of 'callback' in the 'callback=?' part of the query string in the url. So{jsonp:'onJsonPLoad'} would result in 'onJsonPLoad=?' passed to the server.

    jsonpCallbackString

    Specify the callback function name for a jsonp request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests.

    passwordString

    A password to be used in response to an HTTP access authentication request.

    processDataBoolean
    Default: true

    By default, data passed in to the 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 to false.

    scriptCharsetString

    Only for requests with "jsonp" or "script" dataType and "GET" type. Forces the request to be interpreted as a certain charset. Only needed for charset differences between the remote and local content.

    success(data, textStatus, XMLHttpRequest)Function

    A function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the 'dataType' parameter; a string describing the status; and the XMLHttpRequest object (available as of jQuery 1.4). This is an Ajax Event.

    timeoutNumber

    Set a local timeout (in milliseconds) for the request. This will override the global timeout, if one is set via $.ajaxSetup. For example, you could use this property to give a single request a longer timeout than all other requests that you've set to time out in one second. See $.ajaxSetup() for global timeouts.

    traditionalBoolean

    Set this to true if you wish to use the traditional style of param serialization.

    typeString
    Default: 'GET'

    The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.

    urlString
    Default: The current page

    A string containing the URL to which the request is sent.

    usernameString

    A username to be used in response to an HTTP access authentication request.

    xhrFunction

    Callback for creating the XMLHttpRequest object. Defaults to the ActiveXObject when available (IE), the XMLHttpRequest otherwise. Override to provide your own implementation for XMLHttpRequest or enhancements to the factory.

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:

$.ajax();

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, we can implement one of the callback functions.

Callback Functions

The beforeSenderrordataFiltersuccess and complete options all take callback functions that are invoked at the appropriate times. The this object for all of them will be the object in the context property passed to $.ajax in the settings; if that was not specified it will be a reference to the Ajax settings themselves. Some types of Ajax requests, such as JSONP and cross-domain GET requests, do not use XHR; in those cases the XMLHttpRequest parameter passed to the callback will be undefined.

  1. beforeSend is called before the request is sent, and is passed the XMLHttpRequest object as a parameter.
  2. error is called if the request fails. It is passed the XMLHttpRequest, a string indicating the error type, and an exception object if applicable.
  3. dataFilter is called on success. It is passed the returned data and the value of dataType, and must return the (possibly altered) data to pass on to success.
  4. success is called if the request succeeds. It is passed the returned data, a string containing the success code, and the XMLHttpRequest object.
  5. complete is called when the request finishes, whether in failure or success. It is passed the XMLHttpRequest object, as well as a string containing the success or error code.

To make use of the returned HTML, we can implement a success handler:

$.ajax({
  url: 'ajax/test.html',
  success: function(data) {
    $('.result').html(data);
    alert('Load was performed.');
  }
});

Such a simple example would generally be better served by using .load() or $.get().

Data Types

The $.ajax() function relies on the server to provide information about the retrieved data. If the server reports the return data as XML, the result can be traversed using normal XML methods or jQuery's selectors. If another type is detected, such as HTML in the example above, the data is treated as text.

Different data handling can be achieved by using the dataType option. Besides plain xml, the dataType can be htmljsonjsonpscript, or text.

The text and xml types return the data with no processing. The data is simply passed on to the success handler, either through the responseText or responseXML property of the XMLHttpRequest object, respectively.

Note: We must ensure that the MIME type reported by the web server matches our choice of dataType. In particular, XML must be declared by the server as text/xml orapplication/xml for consistent results.

If html is specified, any embedded JavaScript inside the retrieved data is executed before the HTML is returned as a string. Similarly, script will execute the JavaScript that is pulled back from the server, then return the script itself as textual data.

The json type parses the fetched data file as a JavaScript object and returns the constructed object as the result data. To do so, it uses JSON.parse() when the browser supports it; otherwise it uses a Function constructor. Malformed JSON data will throw a parse error (see json.org for more information). JSON data is convenient for communicating structured data in a way that is concise and easy for JavaScript to parse. If the fetched data file exists on a remote server, specify the jsonp type instead.

The jsonp type appends a query string parameter of callback=? to the URL. The server should prepend the JSON data with the callback name to form a valid JSONP response. We can specify a parameter name other than callback with the jsonp option to $.ajax().

Note: JSONP is an extension of the JSON format, requiring some server-side code to detect and handle the query string parameter. More information about it can be found in the original post detailing its use.

When data is retrieved from remote servers (which is only possible using the script or jsonp data types), the operation is performed using a <script> tag rather than anXMLHttpRequest object. In this case, no XMLHttpRequest object is returned from $.ajax(), nor is one passed to the handler functions such as beforeSend.

Sending Data to the Server

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 a map of the form {key1: 'value1', key2: 'value2'}. If the latter form is used, the data is converted into a query string before it is sent. This processing can be circumvented by setting processData to false. The processing might be undesirable if we wish to send an XML object to the server; in this case, we would also want to change the contentType option from application/x-www-form-urlencoded to a more appropriate MIME type.

Advanced Options

The global option prevents handlers registered using .ajaxSend().ajaxError(), and similar methods from firing when this request would trigger them. This can be useful to, for example, suppress a loading indicator that was implemented with .ajaxSend() if the requests are frequent and brief. 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 the username and password 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 the timeout option.

By default, requests are always issued, but the browser may serve results out of its cache. To disallow use of the cached results, set cache to false. To cause the request to report failure if the asset has not been modified since the last request, set ifModified to true.

The scriptCharset allows the character set to be explicitly specified for requests that use a <script> tag (that is, a type of script or jsonp). 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. The async option to$.ajax() defaults to true, indicating that code execution can continue after the request is made. Setting this option to false (and thus making the call no longer asynchronous) is strongly discouraged, as it can cause the browser to become unresponsive.

The $.ajax() function returns the XMLHttpRequest object that it creates. Normally jQuery handles the creation of this object internally, but a custom function for manufacturing one can be specified using the xhr 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.

Additional Notes:

  • Due to browser security restrictions, most "Ajax" requests are subject to the same origin policy; the request can not successfully retrieve data from a different domain, subdomain, or protocol.
  • Script and JSONP requests are not subject to the same origin policy restrictions.

Examples:

Example: Load and execute a JavaScript file.
$.ajax({
   type: "GET",
   url: "test.js",
   dataType: "script"
 });
Example: Save some data to the server and notify the user once it's complete.
$.ajax({
   type: "POST",
   url: "some.php",
   data: "name=John&location=Boston",
   success: function(msg){
     alert( "Data Saved: " + msg );
   }
 });
Example: Retrieve the latest version of an HTML page.
$.ajax({
  url: "test.html",
  cache: false,
  success: function(html){
    $("#results").append(html);
  }
});
Example: Loads data synchronously. Blocks the browser while the requests is active. It is better to block user interaction by other means when synchronization is necessary.
var html = $.ajax({
  url: "some.php",
  async: false
 }).responseText;
Example: Sends an xml document as data to the server. By setting the processData option to false, the automatic conversion of data to strings is prevented.
var xmlDocument = [create xml document];
 $.ajax({
   url: "page.php",
   processData: false,
   data: xmlDocument,
   success: handleResponse
 });
Example: Sends an id as data to the server, save some data to the server and notify the user once it's complete. Note that this usage - returning the result of the call into a variable - requires a synchronous (blocking) request! (async:false)
bodyContent = $.ajax({
      url: "script.php",
      global: false,
      type: "POST",
      data: ({id : this.getAttribute('id')}),
      dataType: "html",
      async:false,
      success: function(msg){
         alert(msg);
      }
   }
).responseText;

Comments

  • Support requests, bug reports, and off-topic comments will be deleted without warning.

  • Please do post corrections or additional examples for jQuery.ajax() below. We aim to quickly move corrections into the documentation.
  • If you need help, post at the forums or in the #jquery IRC channel.
  • Report bugs on the bug tracker or the jQuery Forum.
  • Discussions about the API specifically should be addressed in the Developing jQuery Core forum.
  • whatevssssss
    Note: as a personal experience, catching an exception thrown from an asynchronous call cannot be caught (with try ... catch) in most browsers (in Firefox the exception gets caught, at least in Firefox 3.6.10).

    In jquery 1.4.2, even with "async: false" the exceptions thrown by "error" callbacks DISAPPEAR SILENTLY. After doing some debugging I saw this line:

    var onreadystatechange = xhr.onreadystatechange = function( isTimeout ) {

    which makes the synchronous calls to behave asynchronous, thus making it impossible to catch an exception thrown by the error callback.

    To fix this the line should change to:

    var onreadystatechange = function( isTimeout ) {
    ....
    (and after the onreadystatechange block add) 
    if (s.async)
    {
    xhr.onreadystatechange = onreadystatechange;
    }
  • The optional "complete" callback does not seem to fire if an exception is thrown by the "success" or "error" callbacks.

    Exceptions thrown by "success" or "error" callbacks DISAPPEAR SILENTLY if async:true (default option.)
  • Birder
    How should I do if I have a loading function but want to put the result on the existing one... 
    I have ex.: 
    1 apa 
    14 kamel 
    and when i re"load" again I want to put the new one on "1 apa", is it possible?
  • millepag
    "POST data will always be transmitted to the server using UTF-8 charset, per the W3C XMLHTTPRequest standard."

    Actually, that doesn't seem to be true for IE7, which wanted to send my POST data using iso-8859-1. Easily fixed by adding:
    contentType: "application/x-www-form-urlencoded; charset=utf-8"

    For all you brave IE coders ;)
  • Masterhard
    The same issue has google chrome. At least 7.0.517.36 beta :)
  • Musaddiq
    When we load a php page, then how we can call a specific function of this page...
    thanks in advance...
  • The_servant_of_the_moons74
    using no options, loads the contents of the current page, but does nothing with the result. what can i do to use the result
  • look at the other options, such as success and complete.
  • Axelvitali
    calling a Webservice - Webmethod Hello(). Got a response {"d","hello"}. In FireFox call to Success function first and then Error function .In Crhome just call the success. In IE 8 just call the error and giving a parsererror. Any ideas? Thanks
  • jgn
    Is it possible for success to have a textStatus of "timeout"? Or are timeouts always passed to the error handler?
  • Apparently on server response of 303 (standard for a POST response), jquery 1.4.2 calls the error handler instead of the success one. I am even getting undefined for the 3rd arg to my callback. This is working for me: error: function(xhr, text, err) { if (xhr.status == 302) { xhr.getResponseHeader('Location') ...
  • ph1g
    300 codes are for redirect. Shouldn't a post return a 2xx code?

    http://en.wikipedia.org/wiki/HTTP_response_codes#3xx_Redirection
  • Dumdidum
    I searched for this a long time, so i'll link it here:
    http://groups.google.com/group/jquery-en/browse_thread/thread/8f064b556114ba73?pli=1

    It's about what the server-code must do, that the "error:"-part is reached.
  • XanthiX
    I am experiencing activation of both "error" and "success" functions one after another when having "async" attribute set to false. This however contradicts the statement "you can never have both an error and a success callback with a request" and therefore I consider it to be bug. Please check it and, in case I am right, fix it.
  • I experience the same problem. I also use it with async=false, and I also try to use it cross domain (although I know it won't work, but then why gets my success function called?)
  • Wew
    Type your comment  here.nc" attribute set to false. This however contradicts the statement "you can never have both an error and a success callback with a request" and therefore I consider it to be bug. Please check it and, in case I am right, fix it.
  • AM
    if our server function return datatable or other types of data then how to get it?
  • Steve_the_fiend
    Ideally you should think about what you are returning and what the best format for that data is. For example if you dont have many concurrent connections and you intend to display a small datatable as an html table that will be dynamically appended to your dom, why not construct the html table server side and return it in a state that is ready to be appended. If the table is large you will most likely be better off using JSON as previously mentioned see http://blog.andremakram.com/?p=7 for more details
  • Isaac Diaz
    Hi, 
    take a look to  www.json.org 

    If you are using json you can encode your results and access them as types in the result object. give it a try and use firebug to see the structure of the objects. 

    Hope this helps. 
  • Muhammad
    How can i send an event from the server to the client ? 
    i tried a timer to check if a new event exists to handle it 
    but i didn't find that a good solution

&&
10-21 516
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值