码迷,mamicode.com
首页 > 其他好文 > 详细

01-offsetWidth和offsetHeight

时间:2017-03-21 15:31:51      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:宽高   meta   number   type   height   box   set   padding   name   

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        div {
            width: 100px;
            height: 100px;
            padding: 10px;
            border: 10px solid #000;
            margin: 100px;
            background-color: pink;
        }
    </style>
</head>
<body>

    <div class="box"></div>

<script>
    
    var div = document.getElementsByTagName("div")[0];

    //offsetHeight和offsetWidth: 可以检测盒子的宽高。
    //包括宽高本身,padding,border。不包括margin

    //offsetHeight = height+padding+border;(不加margin)
    //offsetWidth = width+padding+border;(不加margin)

    console.log(div.offsetHeight);
    console.log(typeof div.offsetHeight);   //number

</script>


</body>
</html>

  

01-offsetWidth和offsetHeight

标签:宽高   meta   number   type   height   box   set   padding   name   

原文地址:http://www.cnblogs.com/sj1988/p/6594085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!