如何在卸载前更改我网站的 url?
how do I change the url of my site before unload?
所以我有一个页面,通过单击选项卡进行导航,这些选项卡会更改网站正文中显示的内容,当您转到新选项卡(在网站中)时,它会更改 url.例如,我在主页选项卡中,url 更改为 https://a.website.com/home
,然后我转到更改日志选项卡,url 更改为 https://a.website.com/changelog
。这些 url 中的 niiether 确实存在,那么当用户重新加载时,我将如何做到这一点,他们将被定向到 https://a.website.com
,而不是页面未找到错误页面?
可能使用 window.onbeforeunload
?
标记正在用作页面参数的选项卡:
https://a.website.com?tab=home
https://a.website.com?tab=changelog
然后,您可以决定在您的页面上显示哪个标签。
所以我有一个页面,通过单击选项卡进行导航,这些选项卡会更改网站正文中显示的内容,当您转到新选项卡(在网站中)时,它会更改 url.例如,我在主页选项卡中,url 更改为 https://a.website.com/home
,然后我转到更改日志选项卡,url 更改为 https://a.website.com/changelog
。这些 url 中的 niiether 确实存在,那么当用户重新加载时,我将如何做到这一点,他们将被定向到 https://a.website.com
,而不是页面未找到错误页面?
可能使用 window.onbeforeunload
?
标记正在用作页面参数的选项卡:
https://a.website.com?tab=home
https://a.website.com?tab=changelog
然后,您可以决定在您的页面上显示哪个标签。