jQuery不是必需的,window.location.replace(...)
最好模拟HTTP重定向.
window.location.replace(...)
比使用更好window.location.href
,因为replace()
不会将原始页面保留在会话历史记录中,这意味着用户不会陷入永无止境的后退按钮惨败.
/
如果您想模拟某人点击链接,请使用 location.href
如果要模拟HTTP重定向,请使用 location.replace
例如:
// similar behavior as an HTTP redirect
window.location.replace("http://51dev.com");
// similar behavior as clicking on a link
window.location.href = "http://51dev.com";