gpt4 book ai didi

javascript - 链接到 id(hash),检测哈希值,但 scrollTo 不会通过具有固定导航的 if 语句触发

转载 作者:行者123 更新时间:2023-11-28 08:06:26 26 4
gpt4 key购买 nike

我在链接到 div 和处理固定 header 时遇到问题。标题在 div 上爬行,我似乎无法让它向上滚动 162 px(标题的大小)以显示完整的 div。如果这是一个愚蠢的问题,我深表歉意,但在浏览了过去半小时的搜索后,我无法找到适合我的解决方案。

这是向用户提供的链接。

$(document).ready(function(){
console.log(location.hash);
if (window.location.hash){
$location = $(document).scrollTop();
console.log($location);
$location = $location-162;
console.log($location);
window.scrollTo(0, $location);
}
)};

这适用于 hashchange,但 hashchange 不适用于页面加载。

最佳答案

你的问题是你混合了 window 和 $(document)。所以你的正确脚本需要是

$(document).ready(function(){
console.log(location.hash);
if (window.location.hash){
$location = $(document).scrollTop();
console.log($location);
$location = $location-162;
console.log($location);
$(document).scrollTop($location);
}
)};

编辑:现在有了正确的函数scrollTop()并且只有一个参数。

关于javascript - 链接到 id(hash),检测哈希值,但 scrollTo 不会通过具有固定导航的 if 语句触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24744329/

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