当我想重定向时,变量where总是 udefined。但是,例如,我想将该变量放入alert();
其中显示正确的数字。
代码
var where = msg.txt;
window.location = "/page.php?id=".where; //this redirects to /page.php?id=undefined
alert(where); //it show correct number
当我想重定向时,变量where总是 udefined。但是,例如,我想将该变量放入alert();
其中显示正确的数字。
代码
var where = msg.txt;
window.location = "/page.php?id=".where; //this redirects to /page.php?id=undefined
alert(where); //it show correct number