gpt4 book ai didi

javascript - 使用 window.location 在 URL 中添加 #hashtag

转载 作者:行者123 更新时间:2023-11-28 18:30:14 25 4
gpt4 key购买 nike

我的这个页面 example.com/index.php 包含不同的部分。每个部分都可以通过以下链接访问。

  1. 第一部分:example.com/index.php#first
  2. 第二部分:example.com/index.php#second

当用户访问页面 example.com/index.php 时,他应该被定向到第一部分,因此我使用了以下代码:

<script> window.location = "#first"; </script>

每当我尝试访问 example.com/index.php#second 时,我都会被定向到第一部分 (example.com/index.php#first) ,而不是被引导至第二部分。

请帮我解决这个问题。抱歉,我的母语不是英语。

最佳答案

我认为在这种情况下,需要使用一个简单的条件:

if(!window.location.hash) {
window.location.hash = '#first'
}

关于javascript - 使用 window.location 在 URL 中添加 #hashtag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38182871/

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