js不同页面间跳转以及参数传递和调用
程序员文章站
2022-04-18 14:36:58
...
**
js不同页面间跳转以及参数传递和调用
获取值并赋值给变量,进行传参。
<script>
function jump() {
var a = document.getElementById("one").value;//获取目标值
var b = document.getElementById("two").value;
var c = document.getElementById("three").value;
var d = document.getElementById("four").value;
var e = document.getElementById("five").value;
window.location.href='index2.html?a='+a+'&b='+b+'&c='+c+'&d='+d+'&e='+ e;
}//进行页面跳转和参数传递
</script>
接收参数并进行分割,以及调用。
<script>
window.onload = function() {
var url = location.search; //接收参数
// console.log(url); 原参数
var theRequest = new Object(); //创建一个对象
if(url.indexOf("?") !=-1) {
var str = url.substr(1); //从1开始避免取到?
strs = str.split("&"); //按&进行分割
// console.log(strs);去掉&以后的样子
for(var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = decodeURIComponent(strs[i].split("=")[1]); //按=进行分割
}
}
// console.log(theRequest);去掉=以后的样子
// console.log(theRequest.e);其中一个参数的值
document.getElementById("one_one").value = theRequest.b;//获取b的值(页面1中id为two的值)并赋值给id为ono_one的框内
document.getElementById("one_two").value = theRequest.a;
document.getElementById("one_three").value = theRequest.c;
document.getElementById("one_four").value = theRequest.d;
document.getElementById("one_five").value = theRequest.e;
}
</script>
推荐阅读