前端页面获取地址栏传值

Posted 王子先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端页面获取地址栏传值相关的知识,希望对你有一定的参考价值。

function GetRequest() {
var url = location.search;
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;
}

//获取地址栏某个参数值

 

$("#selectiveProject" + i).attr("src", "/QualityAssurance/CheckInspection?&getoffcanvasid=ProjectName" + i + "&typeid=2&keytypeq=" + GetKeyValue("keytype") + "");  //父页面

//公共方法

function GetKeyValue(key) {
var Request = new Object();
Request = GetRequest();
var KeyValue;
if (Request[key] == null || Request[key] == "") { KeyValue = ""; } else { KeyValue = Request[key]; }
return KeyValue;
}

 

//子页面

var keytype = GetKeyValue("keytypeq");

以上是关于前端页面获取地址栏传值的主要内容,如果未能解决你的问题,请参考以下文章

前端页面之间传值--利用cookie存储全局变量

前端通过url页面传值

layer.open Iframe弹窗 除了地址栏传参,怎么给子页面传递参数

前端跨页面传值

封装两个js从url获取相关参数的值和设置前端页面的Cookie和获取Cookie的值

java 求助:如何解决地址栏传参数为中文文件路径时 乱码的情况?