Jquery中文乱码的解决方法

Jquery中文乱码的解决方法

1、用post方式提交如何做
在jsp端
//用post方法提交,客户端需编码数据,data : encodeURI(spost),
//var spost="commentContent="+commentContent+"&contentId="+contentId;
//spost =  encodeURI(spost);
在action端
//用psot方法取值,客户端需编码,服务器端需解码
//String ii = request.getParameter("commentContent");
//ii = java.net.URLDecoder.decode(ii,"utf-8");

2、用get方式
jsp端
type:'GET',不需要处理
action端
String commentContent = new String((request.getParameter("commentContent")).getBytes("ISO-8859-1"),"UT简单的记录一下

你可能感兴趣的:(Jquery中文乱码的解决方法)