gpt4 book ai didi

javascript - 用户重新加载页面后 HTML/JQuery 重定向

转载 作者:行者123 更新时间:2023-12-02 14:07:32 25 4
gpt4 key购买 nike

如何在用户重新加载页面后重定向到另一个 HTML 页面?我不想自动执行此操作,因此无法使用 http-equiv="refresh"。有任何想法吗?谢谢

最佳答案

下面的函数将确保您的页面是第一次加载还是页面刷新。然后您可以相应地添加您的代码。

<form name="refreshForm">
<input type="hidden" name="visited" value="" />
// above Hidden field to store value of your page load status
</form>

function checkRefresh()
{
if( document.refreshForm.visited.value == "" )
{
// This is a fresh page load
document.refreshForm.visited.value = "1";
}
else
{
// This is a page refresh
window.location.replace("http://google.com");
// Or , Use either of them
window.location.href = "http://google.com";
}
}

关于javascript - 用户重新加载页面后 HTML/JQuery 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39911947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com