10
09/2014
jquery scroll
window scroll 有缺点,如果页面不高,不会触发(的确没有 scroll)
$(window).scroll(function() {
///
})
on mousewheel 就好一点,但拖拽滚动条不行。
$(window).on('mousewheel scroll', function() {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
if (!$('#moreChats').hasClass('isEnd')) {
$('#moreChats a').trigger('click');
}
}
})