Jscrollpane在底部初始化
我正在使用 jscrollpane 插件 作为自定义滚动条。我无法完成的是在底部初始化,即每当加载该窗口时,它应该自动滚动到底部。非常感谢任何帮助。
I am using the jscrollpane plugin for a custom scrollbar. What i cant accomplish is to initialize at the bottom i.e whenever that window is loaded it should be auto scrolled to the bottom. Any help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为您的网站中可能有多个
jScrollPane
元素,所以您需要遍历所有这些元素并调用scrollToBottom
将滚动条移动到底部:但是当然,如果您想要要将滚动条移动到一个特定 jScrollPane 实例的底部
#myJScrollPane
,请使用以下命令:示例:
我更新了 @scessor 创建的演示。 点击此处查看。
Because you might have multiple
jScrollPane
elements in your website you need to iterate through all of them and callscrollToBottom
to move the scroll bar to the bottom:But of course if you want to move the scroll bar to the bottom of one specific jScrollPane instance
#myJScrollPane
use this:Example:
I updated the demo created by @scessor. Click here to see it.
scrollTo 方法应该适用于此。
http://jscrollpane.kelvinluck.com/scroll_to.html
其中 y 是您所在区域的高度滚动的。如果这有所不同,或者您不知道,请使用您不可能达到的非常高的值,它会滚动到底部。
The scrollTo method should work for this.
http://jscrollpane.kelvinluck.com/scroll_to.html
Where y is the height of your area that scrolls. If this varies, or you don't know it, use a very high value that you are not likely to ever reach and it will scroll to the bottom.