gpt4 book ai didi

javascript - 如何向 window.location 添加 anchor 标记?

转载 作者:行者123 更新时间:2023-12-01 00:38:12 24 4
gpt4 key购买 nike

我想在此处使用该代码来重新加载用户所在的当前页面

<a href="javascript:window.location.href=window.location.href">...

此外,我希望用户跳转到给定的 anchor 标记#berechnen - 在这种情况下我该怎么做?

我尝试过类似的东西

<a href="javascript:window.location.href=window.location.href+#berechnen">

但这当然行不通。我是否需要先将窗口位置保存到变量中,然后向其中添加 #berechnen 字符串,然后将 href 添加到该变量?

最佳答案

在头部:

<script type="text/javascript"> 
function redirectToAnchor(anchor) {
// We remove previous anchors from the current URL
var redirectToURL = document.URL.replace(/#.*$/, "");

redirectToURL = redirectToURL + anchor
window.location.href = redirectToURL;
window.location.reload(true)
}
</script>

然后:

<a href="javascript:redirectToAnchor('#ANCHOR')">

关于javascript - 如何向 window.location 添加 anchor 标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57922774/

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