我的nicescroll插件运行良好,但我需要它自动滚动到最新更新的底部。我不需要resize()
上课,效果很好。插件似乎没有方法。
有没有类似的插件?
您不需要任何其他插件,您必须使用普通的 jquery 函数:
$("#yourdiv").scrollTop($("#yourdiv").prop("scrollHeight"));
$(element).getNiceScroll().doScrollPos(0,$(last-element).position().top);
我遇到了同样的问题。但我需要做的是检测滚动条何时触及底部。我在github上找到了解决方案:
var nice = $("#yourDiv").getNiceScroll();
if(nice.getScrollTop() == nice.page.maxh) {
// the scrollbar touches the bottom now
}
另见:https ://github.com/inuyaksa/jquery.nicescroll/issues/71
希望能帮助到你。
PS:我的 nicescroll 版本是 3