1

我的nicescroll插件运行良好,但我需要它自动滚动到最新更新的底部。我不需要resize()上课,效果很好。插件似乎没有方法。

有没有类似的插件?

4

3 回答 3

5

您不需要任何其他插件,您必须使用普通的 jquery 函数:

$("#yourdiv").scrollTop($("#yourdiv").prop("scrollHeight"));
于 2013-01-02T13:31:03.093 回答
2

$(element).getNiceScroll().doScrollPos(0,$(last-element).position().top);

于 2014-01-23T11:45:08.667 回答
1

我遇到了同样的问题。但我需要做的是检测滚动条何时触及底部。我在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

于 2013-04-19T02:13:08.593 回答