jQuery位置href

可能重复:
我如何重定向到另一个网页?

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

它就像:

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

但究竟是什么呢? 我记不起并且无法使用Google搜索找到它。


没有必要使用jQuery。

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

使用:

window.location.replace(...)

有关更多信息,请参阅此堆栈溢出问题:

我如何重定向到另一个网页?

或者也许是你记得的:

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

这很容易:

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

要么

location.replace('http://address.com'); // <-- No history saved.
链接地址: http://www.djcxy.com/p/1937.html

上一篇: jQuery location href

下一篇: How to go to a URL using jQuery?