gpt4 book ai didi

javascript - 自动滚动到“下一页”的顶部

转载 作者:太空宇宙 更新时间:2023-11-04 11:43:58 26 4
gpt4 key购买 nike

Example URL

这是我的问题:当我调整浏览器大小时(大约 320 像素宽度),向下滚动并单击“下一步”图标(绿色箭头),滚动条停留在页面底部。我想要实现的是类似

$(document).ready(function () {
$('html, body').animate({ scrollTop: 0 }, 'slow');
});

所以下一页会自动滚动到顶部,但我试过没有成功。有什么解决办法吗?

谢谢!

最佳答案

我会将动画添加到您的(我猜)ajax 成功函数中。

success:function(e){
// load the new contents
setTimeout(function(){
$('html, body').animate({ scrollTop: 0 }, 'slow');
},50);
}

如果您使用的不是 ajax,请将其添加到按钮单击事件处理程序中。

关于javascript - 自动滚动到“下一页”的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31125273/

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