$(window).scroll(function(){
var scrollTop = $(this).scrollTop();// 滚动条Y轴滚动的距离
var windowHeight = $(this).height();// 可视区域的高度
var scrollHeight = $(document).height();// 整个内容的高度
if(scrollTop + windowHeight == scrollHeight){
alert('已经到浏览器底部了,这时你可以做你需要的业务了');
}
});