0

当滚动条达到总滚动的 95% 时,如何防止 div 继续滚动?

4

1 回答 1

1

既然你没有演示一个失败的例子,我可以给你一个 95% 完成的解决方案。

(function (w, d) {
    w.scroll(function () {
        var scrollBottom = 95 * (w.scrollTop() + w.height()) / d.height();

        if (scrollBottom > 95) {
            w.scrollTop(  /* what you put here is my exercise for you */  )
        }
    });
}($(window), $(document));
于 2013-09-26T16:14:39.857 回答