码迷,mamicode.com
首页 > Web开发 > 详细

Ajax get方式传值乱码问题

时间:2015-06-30 20:18:52      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

我的解决方式是:对需要传递的中文先进行编码:encodeURIComponent(‘你好‘);

<script type="text/javascript">
        function getText(){
            var xhr = getXhr();
            var hello = encodeURIComponent(‘你好‘);
            xhr.open("get","testEncode.do?str="+hello,true);
            xhr.onreadystatechange=function(){
                if(xhr.readyState==4&&xhr.status==200){
                    alert(xhr.responseText);
                }
            }
            xhr.send();
        }
</script>

在后台直接用request.getParameter("str")取即可。

Ajax get方式传值乱码问题

标签:

原文地址:http://www.cnblogs.com/liujunfen/p/4611283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!