2017-02-18 38 views
0

我需要使用jquery進行檢查如果用戶在元素底部附近滾動。我有一個名爲包裝溢出的元素:滾動,我可以找到的解決方案是關於entite文檔。你怎麼能做出這種檢查在不同的元素比身體檢查用戶是否接近元素底部

+0

的可能的複製[檢測時用戶滾動到使用jQuery的div的底部(http://stackoverflow.com/questions/6271237/detecting-when -user-滾動至底部的-DIV與 - jquery的) –

回答

0
var wantedElementBottom = $("#wanted-element").offset().top + $("#wanted-element").height(); 
    $(window).scroll(function(){ 
     if($(window).scrollTop() === wantedElementBottom) { 
      alert('im here')//do something 
    }) 
    })