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