gpt4 book ai didi

javascript变量总是未定义

转载 作者:行者123 更新时间:2023-11-28 16:10:11 24 4
gpt4 key购买 nike

当我想重定向时,变量 where 始终是未定义的。但是,例如,我想将该变量放入 alert(); 中,它会显示正确的数字。

代码

var where = msg.txt;
window.location = "/page.php?id=".where; //this redirects to /page.php?id=undefined
alert(where); //it show correct number

最佳答案

应该是:

window.location = "/page.php?id=" + where; 

你有:

"/page.php?id=".where;

它尝试检索字符串的 where 属性,但尚未定义该属性。

关于javascript变量总是未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13211445/

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