当滚动到页面底部时,我使用下面的代码来提醒消息。 当我滚动到页面顶部时会发出警报。
出了什么问题?
$(window).scroll(function(){
if($(window).scrollTop() == $(document).height()-$(window).height()){
alert("BOTTOM");
}
});
答案 0 :(得分:0)
尝试
$("html, body").animate({ scrollTop: $(document).height() }, 1000);