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

url传中文参数乱码问题

时间:2018-06-07 11:32:45      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:get   编码   问题   ret   arc   div   color   string   .text   

 

//发出请求页面(编码 encodeURI)
window.location.href="index.html?name="+encodeURI(encodeURI(name));

//接受参数页面(解码 decodeURI)
//获取URL地址参数
function GetQueryString(name){
    var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
    var r = window.location.search.substr(1).match(reg);
    if(r!=null)
        return  unescape(r[2]);
    return null;
}
$(".head-title").text(decodeURI(decodeURI(GetQueryString(name))))

 

url传中文参数乱码问题

标签:get   编码   问题   ret   arc   div   color   string   .text   

原文地址:https://www.cnblogs.com/dxt510/p/9149254.html

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