jquery $.post $.ajax Detailed usage instructions

Source: Internet
Author: User
Tags php tutorial

$.ajax () This is the underlying AJAX implementation of jquery. Simple and easy-to-use high-level implementation see $.get, $.post, etc.

Here are a few Ajax event parameters: Beforesend, Success, complete, error. We can define these events to deal well with each of our AJAX requests.

$.ajax ({url: ' stat.php tutorial ',

Type: ' Post ',

Data:{name: "Keyun"},

DataType: ' HTML ',

timeout:1000,

Error:function () {alert (' Error loading PHP document ');

Success:function (Result) {alert (result);}

});

ajax.asp Tutorial x:

Response.ContentType = "Application/json"; Response.Write ("{result:" + request["name"] + ", Hello! (This message comes from server) '} '); jquery code:
$.post ("Ajax.aspx", {action: "POST", Name: "Lulu"}, function (data, textstatus) {//data can be xmldoc, jsonobj, HTML, text Wait a minute. This For this AJAX-requested option configuration information, refer to the This alert (Data.result) as mentioned in Jquery.get (). }, "JSON");

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.