Jquery ajax submits a form from the action to the jsp implementation Summary

Source: Internet
Author: User

Jsp page:
Copy codeThe Code is as follows:
Var clientTel = $ ("# clientTel"). val ();
Var activityId = $ ("# activityId"). val ();
$. Ajax ({
Type: "post", // sending Method
Url: "/arweb/reserve/saveCode. action", // path
Data: "clientTel =" + clientTel + "& activityId =" + activityId,
Success: function (text) {$ ("# randomCode"). val (text );},
Error: function (text) {alert ("sorry, the user ID does not exist. Please enter the correct user ID ");}
});

Action class:
Copy codeThe Code is as follows:
HttpServletResponse res = ServletActionContext. getResponse ();
Res. reset ();
Res. setContentType ("text/html; charset = UTF-8 ");
PrintWriter pw = res. getWriter ();
Pw. print (random );
Pw. flush ();
Pw. close ();

Pw. print (random); here the random is the value that action will pass to jsp. In jsp, success: function (text) here the text is the value that receives the data from the action.

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.