difference between document.documentElement.clientHeight and document.body.clientHeight

后端 未结 3 1754
忘掉有多难
忘掉有多难 2021-01-02 08:06

What is the difference between document.documentElement.clientHeight and document.body.clientHeight? Are the return values consistent across all we

3条回答
  •  旧时难觅i
    2021-01-02 08:44

    Let's ask good old firebug (for the sake of being lazy, I did it right here on SO) for the different between those two objects:

    >>> document.documentElement
    
    >>> document.body
    
    

    So, document.documentElement points to the top-level element while document.body points to the element.

提交回复
热议问题