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

JavaScript 如何重定向到另一个网页?,第1张

JavaScript 如何重定向到另一个网页? 一个不只是简单地使用jQuery进行重定向

jQuery不是必需的,[

window.location.replace(...)
]它将最好模拟HTTP重定向。

window.location.replace(...)
比使用更好
window.location.href
,因为
replace()
它不会将原始页面保留在会话历史记录中,这意味着用户不会陷入永无休止的后退按钮惨败中。

如果要模拟某人单击链接,请使用

location.href

如果要模拟HTTP重定向,请使用

location.replace

例如:

// similar behavior as an HTTP redirectwindow.location.replace("http://stackoverflow.com");// similar behavior as clicking on a linkwindow.location.href = "http://stackoverflow.com";


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/4986047.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存