JQuery serialized form serialize () serializeArray ()

Source: Internet
Author: User

JQuery serialized form serialize () serializeArray ()

1. serialize () method

Description: serialized form content is a string used for Ajax requests.

Format: var data =$ (form). serialize ();
 

2. serializeArray () method

Description: serialized form elements (similar to the '. serialize ()' method) return JSON data structure data.

Note that this method returns a JSON object instead of a JSON string. You need to use plug-ins or third-party libraries for string-based operations.

Format: var jsonData = $ (form). serializeArray ();

When Using ajax to submit form data, you can set the data parameter to $ (form). serialize () or $ (form). serializeArray ().


Demo

 
$ (Function () {$ (# ajaxBtn ). click (function () {var params1 =$ (# myform ). serialize (); var params2 =$ (# myform ). serializeArray (); console. log (params1); // name = zhangsan & sex = 1 & age = 20console. log (params2); // [Object, Object, Object] $. ajax ({type: POST, url: RegisterAction. action, data: params1, success: function (msg) {alert (success: + msg );}});})})
We can see that the two methods are different.

 

 

 

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.