将window.location发送到变量,该变量是字符串形式的URL

时间:2013-03-29 17:30:08

标签: javascript jquery

我正在尝试将window.location发送给变量,但我的方法似乎不起作用。

我有一个变量,即名为query的查询和另一个调用者firstPart。我连接它们并尝试将窗口发送到该连接的URL,但它似乎不起作用。

这是我到目前为止所做的:

var query = "hello";
var firstPart = "http://google.com/?=";
window.location.assign(firstPart + query);

2 个答案:

答案 0 :(得分:1)

这样做:

window.location.href = firstPart + query;

答案 1 :(得分:0)

var query = "hello";
var firstPart = "http://google.com/?=";
window.location.href = firstPart + query;

有关此处窗口位置的更多信息https://developer.mozilla.org/en-US/docs/DOM/window.location