2013年5月17日
摘要: 每次服务器发布代码后,最好重新打开浏览器,以防止网页的缓存或者cookie的内容显示到网页上,扰乱自己代码的调试 阅读全文
posted @ 2013-05-17 20:35 CaptainLuffy 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 打搅可能都遇到过在写javascirpt代码时传递中文,在后台取到时发现是乱码,这里把我今天做的方法写出来,希望对大家以后有用!方法(一):html页面:function testOne() {var url = "testOne_test.do?expr="+你好;location = encodeURI(url);}后台java代码:String expr = new String(request.getParameter("expr").getBytes("ISO-8859-1"),"UTF-8");方法(二 阅读全文
posted @ 2013-05-17 20:29 CaptainLuffy 阅读(160) 评论(0) 推荐(0) 编辑