How to get height of entire document with JavaScript?

前端 未结 13 1918
逝去的感伤
逝去的感伤 2020-11-22 06:01

Some documents I can\'t get the height of the document (to position something absolutely at the very bottom). Additionally, a padding-bottom on seems to do nothing on these

13条回答
  •  温柔的废话
    2020-11-22 06:28

    This cross browser code below evaluates all possible heights of the body and html elements and returns the max found:

                var body = document.body;
                var html = document.documentElement;
                var bodyH = Math.max(body.scrollHeight, body.offsetHeight, body.getBoundingClientRect().height, html.clientHeight, html.scrollHeight, html.offsetHeight); // The max height of the body
    

    A working example:

    function getHeight()
    {
      var body = document.body;
      var html = document.documentElement; 
      var bodyH = Math.max(body.scrollHeight, body.offsetHeight, body.getBoundingClientRect().height, html.clientHeight, html.scrollHeight, html.offsetHeight);
      return bodyH;
    }
    
    document.getElementById('height').innerText = getHeight();
    body,html
    {
      height: 3000px;
    }
    
    #posbtm
    {
      bottom: 0;
      position: fixed;
      background-color: Yellow;
    }
    The max Height of this document is: px
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content
    example document body content example document body content example document body content example document body content

提交回复
热议问题