Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6514304
  • 博文数量: 915
  • 博客积分: 17977
  • 博客等级: 上将
  • 技术积分: 8846
  • 用 户 组: 普通用户
  • 注册时间: 2005-08-26 09:59
个人简介

一个好老好老的老程序员了。

文章分类

全部博文(915)

文章存档

2022年(9)

2021年(13)

2020年(10)

2019年(40)

2018年(88)

2017年(130)

2015年(5)

2014年(12)

2013年(41)

2012年(36)

2011年(272)

2010年(1)

2009年(53)

2008年(65)

2007年(47)

2006年(81)

2005年(12)

分类: 系统运维

2011-06-18 13:59:33

jQuery.post( url, [ data ], [ success(data, textStatus, jqXHR) ], [ dataType ] ) Returns:

Description: Load data from the server using a HTTP POST request.

  • version added: jQuery.post( url, [ data ], [ success(data, textStatus, jqXHR) ], [ dataType ] )

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

    dataA map or string that is sent to the server with the request.

    success(data, textStatus, jqXHR)A callback function that is executed if the request succeeds.

    dataTypeThe type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html).

This is a shorthand Ajax function, which is equivalent to:

$.ajax({ type: 'POST', url: url, data: data, success: success dataType: dataType });

The success callback function is passed the returned data, which will be an XML root element or a text string depending on the MIME type of the response. It is also passed the text status of the response.

As of jQuery 1.5, the success callback function is also passed a (in jQuery 1.4, it was passed the XMLHttpRequest object).

Most implementations will specify a success handler:

$.post('ajax/test.html', function(data) { $('.result').html(data); });

This example fetches the requested HTML snippet and inserts it on the page.

Pages fetched with POST are never cached, so the cache and ifModified options in have no effect on these requests.

The jqXHR Object

As of jQuery 1.5, all of jQuery's Ajax methods return a superset of the XMLHTTPRequest object. This jQuery XHR object, or "jqXHR," returned by $.post() implements the Promise interface, giving it all the properties, methods, and behavior of a Promise (see for more information). For convenience and consistency with the callback names used by , it provides .error(), .success(), and .complete() methods. These methods take a function argument that is called when the request terminates, and the function receives the same arguments as the correspondingly-named $.ajax() callback.

The Promise interface in jQuery 1.5 also allows jQuery's Ajax methods, including $.post(), to chain multiple .success(), .complete(), and .error() callbacks on a single request, and even to assign these callbacks after the request may have completed. If the request is already complete, the callback is fired immediately.

// Assign handlers immediately after making the request, // and remember the jqxhr object for this request var jqxhr = $.post("example.php", function() { alert("success"); }) .success(function() { alert("second success"); }) .error(function() { alert("error"); }) .complete(function() { alert("complete"); }); // perform other work here ... // Set another completion function for the request above jqxhr.complete(function(){ alert("second complete"); });
Additional Notes:
  • Due to browser security restrictions, most "Ajax" requests are subject to the ; the request can not successfully retrieve data from a different domain, subdomain, or protocol.
  • If a request with jQuery.post() returns an error code, it will fail silently unless the script has also called the global method or. As of jQuery 1.5, the .error() method of the jqXHR object returned by jQuery.post() is also available for error handling.
Examples:
Example: Request the test.php page, but ignore the return results. $.post("test.php");
Example: Request the test.php page and send some additional data along (while still ignoring the return results). $.post("test.php", { name: "John", time: "2pm" } );
Example: pass arrays of data to the server (while still ignoring the return results). $.post("test.php", { 'choices[]': ["Jon", "Susan"] });
Example: send form data using ajax requests $.post("test.php", $("#testform").serialize());
Example: Alert out the results from requesting test.php (HTML or XML, depending on what was returned). $.post("test.php", function(data) {     alert("Data Loaded: " + data);   });
Example: Alert out the results from requesting test.php with an additional payload of data (HTML or XML, depending on what was returned). $.post("test.php", { name: "John", time: "2pm" },     function(data) {       alert("Data Loaded: " + data);     });
Example: Gets the test.php page content, store it in a XMLHttpResponse object and applies the process() JavaScript function. $.post("test.php", { name: "John", time: "2pm" },   function(data) {     process(data);   },    "xml"  );
Example: Posts to the test.php page and gets contents which has been returned in json format ("John","time"=>"2pm")); ?>). $.post("test.php", { "func": "getNameAndTime" },   function(data){     console.log(data.name); // John     console.log(data.time); //  2pm   }, "json");
Example: Post a form using ajax and put results in a div         src="">        action="/" id="searchForm">      type="text" name="s" placeholder="Search..." />      type="submit" value="Search" />            id="result">
         
阅读(2089) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~