jQuery 瀑布流动态加载效果

实现思路为监控滚动条位置,到达页面底部时触发。
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
alert('bottom!!');

}
});
原文地址:https://www.cnblogs.com/HaiLian/p/5942115.html