标签: javascript
如何使用jquery [javascript]转到另一个页面?
或更改浏览器网址字段中的网址并按Enter键?
答案 0 :(得分:13)
与jQuery无关,只是这个:
window.location.href = 'whatever.html';
答案 1 :(得分:4)
(普通旧javascript)
window.location = 'http://another-place.com';