JS——页面带参数跳转

Posted gyqqqqq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS——页面带参数跳转相关的知识,希望对你有一定的参考价值。

#index.html
window.location.href = "../home.html?value=" + rec_value;

 

#home.html
<script>
    var a = GetRequest();
    console.log(a);

    function GetRequest() {
        var url = location.search; //获取url中"?"符后的字串
        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]] = decodeURIComponent(strs[i].split("=")[1]);
            }
        }
        return theRequest;
    }
</script>

 

以上是关于JS——页面带参数跳转的主要内容,如果未能解决你的问题,请参考以下文章

asp 带参数跳转问题

Js生成表单使用post提交方式带参数下载文件,页面不跳转

tp5,success成功后怎么带参数跳转?

微信小程序页面带参数跳转

小程序带参跳转

js怎么实现像淘宝登陆账自动跳转到登陆前的页面