当用户滚动到页面底部时如何启动jQuery事件?

时间:2012-12-08 03:19:06

标签: javascript jquery html css dom

我正在尝试获取警报,以显示用户是否在页面底部的100像素内滚动。我正在/朋友加载到div class = social,但我在滚动部分遇到问题。关于我能解决什么的任何建议?

<!--Load friends module -->
<script>
  $(document).ready(function (){
    $('.social').load("/friends");
  });
</script>
<!--Load more videos if scroll within 100 pixels of bottom -->
<script type="text/javascript">
  counter = 2;
  $(document).ready(function (){
    function loadMore() {
      console.log("More loaded");
      alert("test");
      $('.more_videos').load("/more_videos/"+counter);
      $(window).bind('scroll', bindScroll);
    }
    function bindScroll(){
      if($(window).scrollTop() + $(window).height() > $(document).height() - 100) {
        $(window).unbind('scroll');
        loadMore();
      }
    }
    $(window).scroll(bindScroll);​
  });
  counter = counter+1;
</script>

1 个答案:

答案 0 :(得分:1)

此行后面有一个不可见的字符

$(window).scroll(bindScroll); 

你可以看到它here。它是第20行末尾的小红点