1. 程式人生 > >H5 頁面下拉加載更多

H5 頁面下拉加載更多

滾動 console style tro 下拉 height 高度 html ner

1.html頁面:

<body onload="index_roll()">                                                                                                                                        
...                                                                                                                                
</body>

2.js

<script type="application/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); };

var num=1; //滾動加載 function index_roll(){ window.addEventListener(‘scroll‘, function(){ if (getScrollTop() + getClientHeight() >= (getScrollHeight()-10)) { //要執行的方法 console.log("打印"+num); num++; } }) } </script>

H5 頁面下拉加載更多