当滚动条达到总滚动的95%时,如何防止继续滚动div?
答案 0 :(得分: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));