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
です。