我正在尝试将 window.location 发送到一个变量,但我的方法似乎不起作用。
我有一个变量,即名为 query 的查询和另一个调用者 firstPart。我将它们连接起来并尝试将窗口发送到该连接的 URL,但它似乎不起作用。
这是我到目前为止所拥有的:
var query = "hello";
var firstPart = "http://google.com/?=";
window.location.assign(firstPart + query);
我正在尝试将 window.location 发送到一个变量,但我的方法似乎不起作用。
我有一个变量,即名为 query 的查询和另一个调用者 firstPart。我将它们连接起来并尝试将窗口发送到该连接的 URL,但它似乎不起作用。
这是我到目前为止所拥有的:
var query = "hello";
var firstPart = "http://google.com/?=";
window.location.assign(firstPart + query);
像这样做:
window.location.href = firstPart + query;
var query = "hello";
var firstPart = "http://google.com/?=";
window.location.href = firstPart + query;
更多关于窗口位置的信息在这里https://developer.mozilla.org/en-US/docs/DOM/window.location