2012-09-07 86 views

回答

0
$(window).on('scroll', function() { 
    if (($(this).scrollTop() + $(this).height()) - $(document).outerHeight(true) > (-200)) {...} 
}); 

FIDDLE

+0

讓我試試吧哥們 – mkat

+0

HY它也有一定的缺陷哥們 – mkat

+0

不,這不是缺陷可言,你可能只是用它錯誤。 – adeneo

0

試試這個:

$(function() { 
    $(window).on('scroll', function() { 
     if ($(window).scrollTop() + $(window).height() >= $(document).height() - 200) { 
      //initate ajax here 
     } 
    }); 
}); 
+0

對不起,夥計它不能按要求工作。 :( – mkat