向下滑动后滚动到顶部

发布于 2024-11-18 04:55:53 字数 198 浏览 3 评论 0原文

我制作了小型 jquery 折叠/展开脚本

http://jsfiddle.net/goldie/QFL49/ (请不要注意 html/css 代码,因为我没有制作它)

如何使展开的 div 滚动到页面顶部? 谢谢你的帮助。

I have made small jquery collapse/expand script

http://jsfiddle.net/goldie/QFL49/
(please don't pay attenton to html/css code because I did'n made it)

How can I make expanded div to scroll to the top of the page?
Thank you for help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

困倦 2024-11-25 04:55:53

我已经找到了

.slideDown(200, function() {
    $('html, body').delay('200').animate({
    scrollTop: $(this).offset().top - 111
    }, 200);
});

I have found it

.slideDown(200, function() {
    $('html, body').delay('200').animate({
    scrollTop: $(this).offset().top - 111
    }, 200);
});
最终幸福 2024-11-25 04:55:53

最后发现这个,工作正常:

.slideDown(200, function() {
    $('html, body').delay('200').animate({
    scrollTop: $(this).offset().top 
    }, 200); }); } });

Found this in the end, works fine:

.slideDown(200, function() {
    $('html, body').delay('200').animate({
    scrollTop: $(this).offset().top 
    }, 200); }); } });
不必在意 2024-11-25 04:55:53

您可以使用 .scrollTop 或者如果您想要它动画,请执行 .animate({"top": "0px"},1000) 例如

you could use .scrollTop or if you want it animated, do .animate({"top": "0px"},1000) for example

旧伤还要旧人安 2024-11-25 04:55:53

还有 jQuery scrollTo 插件, http://plugins.jquery.com/project/ScrollTo

There is also the jQuery scrollTo plugin, http://plugins.jquery.com/project/ScrollTo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文