gpt4 book ai didi

javascript - 如果 URL 在初始页面加载时包含哈希

转载 作者:行者123 更新时间:2023-11-29 18:13:15 25 4
gpt4 key购买 nike

我需要在初始页面加载时运行一些函数,如果页面刷新,如果 url 包含特定的哈希值。

截至目前,我只能在页面刷新时让它工作,而在我第一次进入该页面时不工作。

我的代码:

$(document).ready(function() {
if (document.location.href.indexOf('#story') > -1) {
alert('true');
}
});

最佳答案

您应该像这样使用 window.location.hash:

$(document).ready(function() {
if (window.location.hash === '#story') {
alert('true');
}
});

关于javascript - 如果 URL 在初始页面加载时包含哈希,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25430319/

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