原生js觸碰到底部觸發函數;


  /**
  function __morebook(){
    console.log(123)
  }
  ScrollBottom(function(){__morebook();});
  **/

  //如果直接寫一個如下:
  //  ScrollBottom 方法里有個參數x,x作為函數帶參數。然后通過doFun去調用;
  //  為何doFun做為參數也調用了,是因為方法里有個setTimeOut;
  //  這樣寫的意義是什么呢?是將scrollBottom寫成公用方法,可以通過任何方式點擊或者滾動都可以調用;
  ScrollBottom(function(){console.log('碰到底部:',123)})
  //點擊: $("jsMoreTip").click(function () { __morebook() });

      //滾動條到底部觸發的事件
  function ScrollBottom(x){
    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 __getWindowHeight(){
        var windowHeight = 0;
        if(document.compatMode == "CSS1Compat"){
        windowHeight = document.documentElement.clientHeight;
        }else{
          windowHeight = document.body.clientHeight;
        }
        return windowHeight;
    }
    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;
    }
    window.onscroll = function(){
        if(__getScrollTop() + __getWindowHeight() == __getScrollHeight())
        doFun(x)
    };
  }
  function doFun(x){setTimeout(x,0)}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM