gpt4 book ai didi

javascript - 在不使用动画的情况下滚动到元素的顶部

转载 作者:行者123 更新时间:2023-11-29 10:12:00 25 4
gpt4 key购买 nike

如何在不使用 animate() 的情况下滚动到元素的顶部?我用谷歌搜索,但所有答案都与 animate() 有关。

$("#button").click(function() {
$('html, body').animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 2000);
});

我只想立即转到元素的顶部。就我而言, animate() 不是必需的。

最佳答案

使用.scrollTop()

$("#button").click(function() {
$('html, body').scrollTop( $("#elementtoScrollToID").offset().top);
});
.dummy {
height: 1200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<button id="button">Test</button>
<div class="dummy"></div>
<div id="elementtoScrollToID">elementtoScrollToID</div>

关于javascript - 在不使用动画的情况下滚动到元素的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31737408/

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