«
滑动到底部执行的操作

时间:2020-6-6    作者:文博    分类: WEB前端


$(window).scroll(function(){
// scroll at bottom
if ($(window).scrollTop() + $(window).height() == $(document).height()) {
         //滑动底部执行操作
}
});