Several ways to submit forms asynchronously using Ajax

Source: Internet
Author: User
Tags json

Here are three popular ways to submit

Way One

Manual collection of all user input, encapsulated as a large "k1=v1&k2=v2 ..." key-value pair form, using $.post (URL, DATA,FN) to submit data to the server

$.ajax ({  
        type: ' Post ',      
        URL: ' notice_notipsnotice ',  
        data: ' K1=v1&k2=v2 ... ',  
        cache:false,  
        DataType: ' json ',  
        success:function (data) {  
        }  
    });  

Mode two

Single Serialization: $ (' #myform '). Serialize (); The return value is the "K1=v1&k2=v2 ..." key-value pair form, and then the asynchronous request can be initiated.
function Notips () {  
    var Formparam = $ ("#form1"). Serialize ();//Serialize table contents as String  
    $.ajax ({  
        type: ' Post ',      
        URL: ' Notice_notipsnotice ',  
        Data:formparam,  
        cache:false,  
        dataType: ' JSON ',  
        success: function (data) {  
        }  
    });  
  

Way Three
Use the Ajaxsubmit () function provided by the jquery form plugin

$ (' #myform '). Ajaxsubmit ({type: ' get/post ', url: ' xx.php ', DataType: ' json ', SUCCESS:FN,  
Clearform:true, resetform:true}); This function automatically serializes the selected form and commits the 
asynchronously.
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.