JQuery Ajax () submits form data using serialize ()

Source: Internet
Author: User

The serialize () method of query creates a URL-encoded text string by serializing the form value, and we can select one or more form elements, or you can directly select the form to serialize it, such as:

<form action= "" >first Name: <input type= "text" name= "FirstName" value= "Bill"/><br/>last Name: < Input type= "text" name= "LastName" value= "Gates"/><br/></form>
$ (document). Ready (function () {    Console.log ($ ("form"). Serialize ());//firstname=bill&lastname=gates});

In this way, we can pass the serialized value to Ajax () as the URL parameter, and easily use Ajax () to submit the form form, instead of one to get the value of the form and then passed to Ajax (), for example, as follows:

$.ajax ({    type: ' Post ',    URL: ' Your URL ',    data: $ ("form"). Serialize (),    success:function (data) {        / /Your Code    }});

The same is true with $.post (), $.get (), and $.getjson ():

$.post (' Your URL ', $ ("form"). Serialize (), function (data) {        //Your Code    }}), $.get (' Your URL ', $ ("form"). Serialize (), function (data) {        ///Your Code    }}); $.getjson (' Your URL ', $ ("form"). Serialize (), function (data) {        //Your Code    }});

JQuery Ajax () submits form data using serialize ()

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.