需求說明:當用戶瀏覽到頁面底部時候,自動加載下一頁的內容
實現原理:JS獲取當前滾動條高度、滾動條長度以及頁面總長度,當滾動條高度加上當前滾動條長度等於頁面總長度的時候,頁面到達底部,此時能夠觸發ajax加載下一頁內容。代碼以下javascript
<script> //獲取滾動條當前的位置 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); } window.onscroll = function () { if (getScrollTop() + getClientHeight() == getScrollHeight()) { $.ajax({}) }</script>