Data parameter usage in ajax method in Jquery _ jquery

Source: Internet
Author: User
This article mainly summarizes the usage of the ajax Method data parameter in Jquery. If you need it, you can refer to it and hope to help you. The Code is as follows:


$. Ajax ({
Type: "POST ",
Url: "some. php ",
Data: "name = John & location = Boston", // The first method for passing Parameters
// Data: {name: "John", location: "Boston"} // The second method for passing Parameters
// Data: {foo: ["bar1", "bar2"]} to '& foo = bar1 & foo = bar2'
/*
First, we use the url to pass parameters. If the parameter contains the "&" symbol, the parameters may not be received or are incomplete,
For example, "data:" name = John & location = Boston "," If the value of name is "john & smith", there may be problems in writing,
We can use the encodeURIComponent () method in JS to escape,
However, if data: {name: "John", location: "Boston"} is used for writing, you do not need to escape it,
If it is escaped, it will receive the escaped string.
*/
Success: function (msg ){
Alert ("Data Saved:" + msg );
}
});

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.