Introduction to Using Ajax to pass values in a script

Source: Internet
Author: User

Page script:
Copy codeThe Code is as follows:
Function ajaxSave (URLS ){
// Define a variable to store the XMLHttpRequest object
Var xmlhttp;
// Define a variable to store the response results returned from the server
Var responseContext = "";
If (window. XMLHttpRequest) {// code for IE7 +, Firefox, Chrome, Opera, Safari
Xmlhttp = new XMLHttpRequest ();
} Else {// code for IE6, IE5
Xmlhttp = new ActiveXObject ("Microsoft. XMLHTTP ");
}
Xmlhttp. onreadystatechange = function (){
If (xmlhttp. readyState = 4 & xmlhttp. status = 200 ){

ResponseContext = xmlhttp. responseText;
Alert (responseContext );
}
}

Xmlhttp. open ("POST", URLS, true );
Xmlhttp. setRequestHeader ("Content-Type ",
"Application/x-www-form-urlencoded ");
Xmlhttp. send ();
}

Background Method:
Copy codeThe Code is as follows:
Boolean boolean1;
String reponseText = "";
If (boolean1 ){
ReponseText = "saved successfully! ";
}
Else {
ReponseText = "failed to save! ";
}
HttpServletResponse response = ServletActionContext. getResponse ();
Response. setContentType ("text/plain ");
Response. setCharacterEncoding ("UTF-8 ");
PrintWriter out = response. getWriter ();
Out. println (reponseText );
Out. flush ();
Out. close ();
Return null;

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.