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简单的记录一下
posted on 2009-11-25 17:09
坏男孩 阅读(1878)
评论(1) 编辑 收藏 所属分类:
JAVAScript