当div滚动到时运行javascript函数
这个问题在这里已经有了答案:
你可以使用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