gpt4 book ai didi

Javascript - 出于设计原因添加 anchor

转载 作者:行者123 更新时间:2023-12-02 05:54:24 28 4
gpt4 key购买 nike

我有一个小的 JS 问题:如果用户访问特殊站点 http://www.test.de 我想出于设计原因自动向该 url 添加一个 anchor -> 结果 http://www.test .de/#welcome.

10 秒后,我想将 anchor 更改为 http://www.test.de/#thankyou

这在某种程度上是可能的吗?也许与 window.location?

非常感谢您的帮助!

最佳答案

你可以在这里使用window.location.hash

window.onload = function(){
window.location.hash = 'welcome';

setTimeout( function(){
window.location.hash = 'thankyou';
}, 10*1000);
};

关于Javascript - 出于设计原因添加 anchor ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4136078/

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