jquery uses serialize () to submit form data based on Ajax () _jquery

Source: Internet
Author: User

The example in this article describes jquery's approach to submitting form data based on Ajax () using serialize (). Share to everyone for your reference, specific as follows:

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

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

In this way, we can pass the serialized value to Ajax () as the parameter of the URL, easily use Ajax () To submit form form, instead of getting a value in the form and then passing it to Ajax (), for example:

$.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
 }
});

I hope this article will help you with the jquery program design.

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.