Ajax中send方法传递中文参数
例如 :
var url = “login.jsp?user=XXX”;
xmlHttpRequest.open(“GET”,url,true);
xmlHttpRequset.send(null);
此外,也可以使用send方法传递参数。使用send方法传递参数使用的是POST方法,需要设定Content-Type头信息,模拟HTTP POST方法发送一个表单,这样服务器才会知道如何处理上传的内容。参数的提交格式和GET方法中url的写法一样。设置头信息前必须先调用open方法。
例如:
xmlHttpRequest.open(“POST”,”login.jsp”,true);
xmlHttpRequest.setRequestHeder(“Content-Type”,”application/x-www-form-urlencoded;charset=UTF-8″);
xmlHttpRequest.send(“user=”+username+”&pwd=”+password);
需要注意的是根据提交方式的不同,两种提交方式分别调用后台的doGet方法和doPost方法。
但是使用的参数值包含中文时,使用第二种方式会方便的多。
分类: 网站 2,661 次阅读
原文链接:http://www.wenhq.com/article/view_287.html欢迎转载,请注明出处:亲亲宝宝