From form submission return values are implemented using post or get Methods

Source: Internet
Author: User

You can use the post or get method of jquery to implement ($. post (url, params, callback) $. get (url, params, callback ))

Return Value:XMLHttpRequest

Parameters:

• Url (String): the URL address of the loaded page.
• Params (Map): (optional) Key/value pair parameters sent to the server.
• Callback (Function): (optional) Function executed when the remote page is loaded.

When submitting a form, a prompt box Indicating successful or failed operations is displayed after the submission is complete. At this time, the callback function will be used.

Example:

Page Submission Form
Copy codeThe Code is as follows:
Function onSubmita ()
{
Var args = {
"Resolution. cif": $ ("input [name = 'Resolution. cif ']"). val (),
"Resolution. fourCif": $ ("input [name = 'Resolution. fourCif ']"). val (),
"Resolution. HeightP": $ ("input [name = 'Resolution. HeightP ']"). val (),
"Resolution. widthP": $ ("input [name = 'Resolution. widthP ']"). val (),
"Resolution. vga": $ ("input [name = 'Resolution. vga ']"). val ()
};
If (confirm ("are you sure you want to submit modifications to the bitstream settings? ")){
$. Post ("<% = basePath %> old/ResolutionAction-resolution.action? Type = set ", args, function (data ){
Alert (data );
});
}

}

Server

Execute the action and return the returned value
Copy codeThe Code is as follows:
//..... Action Method
GetResponse (). setContentType ("text/html; charset = UTF-8 ");
GetResponse (). getWriter (). print ("execution successful !");

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.