jQuery位置href

时间:2011-08-16 13:07:20

标签: javascript jquery

  

可能重复:
  How do I redirect to another webpage?

我记得jQuery中有一个重定向函数。

就像:

$(location).href('http://address.com')

但究竟是什么?我无法记住,也无法使用Google搜索找到它。

6 个答案:

答案 0 :(得分:90)

不需要jQuery。

window.location.href = 'http://example.com';

答案 1 :(得分:29)

使用:

window.location.replace(...)

有关详细信息,请参阅此Stack Overflow问题:

How do I redirect to another webpage?

也许这就是你记得的:

var url = "http://stackoverflow.com";
$(location).attr('href',url);

答案 2 :(得分:26)

这更容易:

location.href = 'http://address.com';

或者

location.replace('http://address.com'); // <-- No history saved.

答案 3 :(得分:13)

我认为你在寻找:

window.location = 'http://someUrl.com';

这不是jQuery;它是纯粹的JavaScript。

答案 4 :(得分:6)

您只能使用JavaScript:

window.location = 'http://address.com';

答案 5 :(得分:6)

理想情况下,您希望使用window.location.replace(...)

请在此处查看此答案以获取完整说明: How do I redirect to another webpage?