ホームページ > 記事 > ウェブフロントエンド > JavaScript を使用してスクロール バーが最下部に到達したかどうかを判断する方法の詳細なコード例
スクロール バーが一番下に達するかどうかを判断するには、DOM の 3 つの属性値、つまり、scrollTop、clientHeight、scrollHeight を使用する必要があります。
scrollTop は、Y 軸上のスクロール バーのスクロール距離です。
clientHeight は、コンテンツの表示領域の高さです。
scrollHeight は、コンテンツの表示領域の高さにオーバーフロー (スクロール) 距離を加えたものです。
これら 3 つの属性の導入からわかるように、スクロール バーが一番下に到達する条件は、scrollTop + clientHeight ==scrollHeight です。
//滚动条在Y轴上的滚动距离 function getScrollTop(){ var scrollTop = 0, bodyScrollTop = 0, documentScrollTop = 0; if(document.body){ bodyScrollTop = document.body.scrollTop; } if(document.documentElement){ documentScrollTop = document.documentElement.scrollTop; } scrollTop = (bodyScrollTop - documentScrollTop > 0) ? bodyScrollTop : documentScrollTop; return scrollTop; } //文档的总高度 function getScrollHeight(){ var scrollHeight = 0, bodyScrollHeight = 0, documentScrollHeight = 0; if(document.body){ bodyScrollHeight = document.body.scrollHeight; } if(document.documentElement){ documentScrollHeight = document.documentElement.scrollHeight; } scrollHeight = (bodyScrollHeight - documentScrollHeight > 0) ? bodyScrollHeight : documentScrollHeight; return scrollHeight; } //浏览器视口的高度 function getWindowHeight(){ var windowHeight = 0; if(document.compatMode == "CSS1Compat"){ windowHeight = document.documentElement.clientHeight; }else{ windowHeight = document.body.clientHeight; } return windowHeight; } window.onscroll = function(){ if(getScrollTop() + getWindowHeight() == getScrollHeight()){ alert("you are in the bottom!"); } };
jquery を使用して実装すると簡単になります。
$(window).scroll(function(){ var scrollTop = $(this).scrollTop(); var scrollHeight = $(document).height(); var windowHeight = $(this).height(); if(scrollTop + windowHeight == scrollHeight){ alert("you are in the bottom"); } });
同様の考え方に基づいて、特定の要素のスクロール バーが最下部に到達したかどうかを判断したい場合は、document.body を特定の要素に置き換えるだけです。要素と get のメソッドは同じですが、要素の表示高さを取得するには、offsetHeight 属性を使用する必要があり、メソッドに従うだけです。
以上がJavaScript を使用してスクロール バーが最下部に到達したかどうかを判断する方法の詳細なコード例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。