当div滚动到时运行javascript函数

这个问题在这里已经有了答案:

  • jQuery事件触发行动时,一个div可见21答案

  • 你可以使用JQuery来实现它。

    $( '#yourdiv').scroll(function() {
       if ( $(this)[0].scrollHeight - $(this).scrollTop() <= $(this).outerHeight()){
           //ajax method for getting your data
           //append response data to your div
        } 
    });
    

    请参阅本文以了解如何使用jQuery实现ajax

    链接地址: http://www.djcxy.com/p/83377.html

    上一篇: Run javascript function when div is scrolled to

    下一篇: element become visible