经过本人查阅无数资料,最终得出一个比较简单,具有一定兼容性的结果。

$(window).scroll(function( ) {

var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;

var scrollHeight = document.body.scrollHeight;

var windowHeight = document.body.clientHeight; 

if(scrollTop + windowHeight == scrollHeight) {    

// alert("已经到最底部了”);

}

});

05-11 19:59