url传参时包含中文

在js中进行传参,由于包含中文,所以需要经过两次encodeURI()编码和两次decodeURI()解码

a.html跳转b.html传中文参数:

a.html:

html:   

 

js:

jump:function(uid,name){

            var url=encodeURI(encodeURI("share.html?uid="+uid+"&name="+name));

            window.location.href=url;

}


b.html:

js:

function GetRequest() {

    var url =decodeURI(decodeURI(location.search)); //获取url中"?"符后的字串,使用两次decodeRUI解码

    var 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]] = unescape(strs[i].split("=")[1]);

        }

        return theRequest;

    }

}

var postData = GetRequest();

    console.log(postData); //postData是一个json对象:{uid:'12334',name:'我的名字'};可直接使用postData.uid;    postData.name

你可能感兴趣的:(url传参时包含中文)