如何利用Ajax实现在脚本里传值

小编给大家分享一下如何利用Ajax实现在脚本里传值,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

页面脚本

function ajaxSave(URLS) { 
//定义一个变量用于存放XMLHttpRequest对象 
var xmlhttp; 
//定义一个变量用于存放 从服务器返回的响应结果 
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(); 
}

后台方法

Boolean boolean1; 
String reponseText = ""; 
if(boolean1){ 
reponseText="保存成功!"; 
} 
else{ 
reponseText="保存失败!"; 
} 
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;

以上是“如何利用Ajax实现在脚本里传值”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!