如何使用 JavaScript 重定向?
2022-08-29 22:09:12
如何使用JavaScript从另一个页面重定向到一个页面?
要重定向到另一个页面,您可以使用:
window.location = "http://www.yoururl.com";
window.location.replace('http://sidanmor.com');
它比使用更好window.location.href = 'http://sidanmor.com';
使用更好,因为它不会在会话历史记录中保留原始页面,这意味着用户不会陷入永无止境的后退按钮惨败中。replace()
如果要模拟某人单击链接,请使用
window.location.href
如果要模拟 HTTP 重定向,请使用
window.location.replace
例如:
// similar behavior as an HTTP redirect
window.location.replace("http://sidanmor.com");
// similar behavior as clicking on a link
window.location.href = "http://sidanmor.com";
从这里开始:如何重定向到jQuery中的另一个页面?