欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS获取URL解析,中文乱码问题解决

程序员文章站 2022-04-03 08:17:25
...

形如:localhost:8080 ********.aspx?param=1&parma=2的地址。

function getUrlInfo(){
var url = location.search; //获取url中"?"符后的字串 
             theRequest = new Object();
            if (url.indexOf("?") != -1) {
                var str = url.substr(1);
                strs = str.split("&");
                for (var i = 0; i < strs.length; i++) {
                    theRequest[strs[i].split("=")[0]] = decodeURIComponent(strs[i].split("=")[1]);
                }
            }
}

解析时使用decodeURIComponent即可。