网页设计中scrollHeight,offsetHeight,clientHeight在各个浏览器中的区别

四大浏览器 chrome,firefox,ie,opera 在网页带滚动条的情况下:

clientHeight在各个浏览器中都是指可见高度

当网页实际内容高度大于clientHeight时,chrome ,firefox,ie,opera 都将scrollHeight和offsetHeight设定为网页内容高度,具体为实际内容高度+滚动条高度+网页边框高度

当网页实际内容高度小于clientHeight时,chrome ,firefox,ie,opera 都将scrollHeight设定为clientHeight,

chrome ,firefox,opera都将offsetHeight设定为网页内容实际高度,具体为实际内容高度 +滚动条高度+网页边框高度,ie11将offsetHeight设定为ClientHeight


<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>


    <style>
        body{
            height: 200px;
        }
       
    </style>
</head>
<body>
<div id="aa">fasdf</div>
<div id="bb">fasdfasd</div>
</body>
<script type="text/javascript">
    var box=document.getElementById("aa");
    alert("scrollHeight is:"+document.documentElement.scrollHeight);
    alert("offsetheight is:"+document.documentElement.offsetHeight);
    alert("clientHeight is :"+document.documentElement.clientHeight);
    alert(document.documentElement.offsetTop);
    alert(document.documentElement.scrollTop);
</script>
</html>


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。