gpt4 book ai didi

javascript - JS中传递变量到另一个页面

转载 作者:行者123 更新时间:2023-12-03 08:04:29 26 4
gpt4 key购买 nike


我是 JS 的新手,只是对我的愚蠢有疑问。编码


获取输入.js

setVal(5,6);

全局.js

var x ; var y ;
function setVal(a,b){
x=a;
y=b;
}
function getVal(){
//code to return the value of x and y as an array
}

getVal.js

arr = getVal();

1.html:

<html>
<head>
<script src='global.js'></script>
<script src='getInput.js'></script>
</head>
<body>
<!-- content of body -->
<!--Code to navigate to 2.html -->
</body>
</html>

2.html:

   <html>
<head>
<script src='global.js'></script>
<script src='getVal.js'></script>
</head>
<body>
<!-- content of body -->
</body>
</html>

当2.html重定向时,它显示数组为“未定义”

我知道可以使用页面之间的缓存传递变量,并且还有各种其他方法可以执行相同的操作。但我想知道上述方法不起作用的具体原因。如果有人让我知道更好的解决方案,那将是值得赞赏的。

最佳答案

因为在本例中 2.html 中移动到新页面时,前一个页面将被销毁,新页面将被解析和加载。因此,您的脚本 global.js 在页面 2.html 上重新执行,当您调用函数 getVal() 时,这些变量是 undefined 因为它们没有分配任何值。

HTTP 是无状态的,它不能保留不同请求之间的信息。您需要某种机制来将这些值存储在 cookie、本地存储或某种数据库中。

关于javascript - JS中传递变量到另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34449030/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com