js滚动条滚到底部触发事件
$(document).scroll(function() { if ( $(document).scrollTop() + window.innerHeight == $(document).height()) { alert('滚到了底部'); } });