gpt4 book ai didi

jquery - 在页面加载时滚动到特定的 div

转载 作者:技术小花猫 更新时间:2023-10-29 12:05:53 25 4
gpt4 key购买 nike

我正在尝试弄清楚如何在页面加载后让页面自动滚动到特定的 div。我试过使用 jQuery 滚动功能,但无法使其正常工作。有什么建议吗?

以下是我到目前为止所尝试的:

jQuery(function() {
jQuery(window).scrollTop(jQuery('.container').offset().top);
});

最佳答案

您可以使用 .animate() 执行此操作方法:

$(document).ready(function () {
// Handler for .ready() called.
$('html, body').animate({
scrollTop: $('#what').offset().top
}, 'slow');
});
  • 这将平滑滚动到 ID 为 what 的 div

FIDDLE

关于jquery - 在页面加载时滚动到特定的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18103534/

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