向下滑动后滚动到顶部
我制作了小型 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我已经找到了
I have found it
最后发现这个,工作正常:
Found this in the end, works fine:
您可以使用 .scrollTop 或者如果您想要它动画,请执行 .animate({"top": "0px"},1000) 例如
you could use .scrollTop or if you want it animated, do .animate({"top": "0px"},1000) for example
还有 jQuery scrollTo 插件, http://plugins.jquery.com/project/ScrollTo
There is also the jQuery scrollTo plugin, http://plugins.jquery.com/project/ScrollTo