下面小編就為大家分享一篇基於捲軸位置判斷的簡單實例,JavaScript的功能強大是大家有目共睹的,可見學好JavaScript是多麼的重要,對JavaScript有興趣的小夥伴們一起跟著小編過來看看吧
實例如下所示:
//获取滚动条距离顶部位置 function getScrollTop() { var scrollTop = 0; if (document.documentElement && document.documentElement.scrollTop) { scrollTop = document.documentElement.scrollTop; } else if (document.body) { scrollTop = document.body.scrollTop; } return scrollTop; } //获取当前可视范围的高度 function getClientHeight() { var clientHeight = 0; if (document.body.clientHeight && document.documentElement.clientHeight) { clientHeight = Math.min(document.body.clientHeight, document.documentElement.clientHeight); } else { clientHeight = Math.max(document.body.clientHeight, document.documentElement.clientHeight); } return clientHeight; } //获取文档完整的高度 function getScrollHeight() { return Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); } //判断滚动条是否达到底部 getScrollTop() + getClientHeight() == getScrollHeight()
以上這篇基於滾動條位置判斷的簡單實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援PHP中文網。
相關推薦:
#以上是基於滾動條位置判斷的簡單實例_javascript技巧的詳細內容。更多資訊請關注PHP中文網其他相關文章!