-1
我想檢測我是否處於頁面底部。這適用於任何瀏覽器 - 但不適用於iPhone。檢測iPhone上底部的滾動條
if ($(window).scrollTop() == ($(document).height() - $(window).height())){
alert('on bottom');
}
我做錯了什麼?
我想檢測我是否處於頁面底部。這適用於任何瀏覽器 - 但不適用於iPhone。檢測iPhone上底部的滾動條
if ($(window).scrollTop() == ($(document).height() - $(window).height())){
alert('on bottom');
}
我做錯了什麼?
試試這個:
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() >= $(document).height()){
alert('on bottom');
}
});
不起作用:/ –
我editted我的答案,現在就來試試。 –
不...現在沒有戒備:/它真的很棘手... –