2013-03-29 85 views
0

我想發送window.location到一個變量,但我的方法似乎並沒有工作。發送window.location到一個變量,這是一個字符串形式的網址

我有一個變量是查詢調用查詢和另一個調用者firstPart。我連接它們並嘗試將窗口發送到該連接的URL,但它似乎不起作用。

這是我到目前爲止有:

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

你有什麼作品,雖然' .assign()'不是必需的(*但它確實有效!*)。 'window.location.href = firstPart + query' –

回答

1

做這樣的:

window.location.href = firstPart + query; 
相關問題