php files using ajax
每次scrolls to the bottom
窗口的用户时,我都会添加一些。
$(window).scroll(function(){
if($(window).scrollTop() + $(window).height() > $(document).height() - 100){
$(window).unbind('scroll');
// Function to append php files using ajax
}
})
我想识别下一次用户滚动到页面底部并附加一些其他 php 文件,但是我如何找出滚动到页面底部的下一个(1 个或多个)事件?
Example: First scroll to bottom: Append 1.php 2.php
second scroll to bottom: append 3.php 4.php
third scroll to bottom: append 5.php 6.php
4th scroll to bottom: show footer
我不需要infinite scroll plugin
。因为那里没有概念footer
。