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——页面带参数跳转的主要内容,如果未能解决你的问题,请参考以下文章