-1

ページの下部にいるかどうかを検出したい。これはどのブラウザでも問題なく動作しますが、iPhone では動作しません。

if ($(window).scrollTop() == ($(document).height() - $(window).height())){
alert('on bottom'); 
}

私が間違っているのは何ですか?

4

1 に答える 1

0

代わりにこれを試してください:

$(window).scroll(function () { 
   if($(window).scrollTop() + $(window).height() >= $(document).height()){
       alert('on bottom'); 
   }
});
于 2012-06-26T08:34:27.703 に答える