0
window.location="http://test.rgniyd.com/test1/?q=node/36/"&dept="+ dept +"&bath="+  
bat +"&month=+month+"&year="+year+"&semester="+sem";

如何使用JavaScript 中的值将页面重定向到http://test.rgniyd.com/test1/?q=node/36/ 。
上面的代码不起作用,请帮助或建议我如何在不清除 JavaScript 中的会话值的情况下重定向页面

4

2 回答 2

1

将您的 JavaScript 更改为

window.location="http://test.rgniyd.com/test1/?q=node/36/&dept=" + dept + "&bath=" + bat + "&month=" + month + "&year=" + year + "&semester=" + sem;

因为你放错了双引号"

于 2013-10-07T13:04:42.743 回答
0

你搞砸了(有点)字符串连接..

window.location="http://test.rgniyd.com/test1/?q=node/36/&dept="+ dept +"&bath="+  
bat +"&month="+month+"&year="+year+"&semester="+sem;
于 2013-10-07T13:05:14.950 回答