获得元素的内在高度

时间:2012-11-17 22:54:20

标签: javascript dom

如何获得元素的内部高度,没有填充和边框?

没有jQuery,只有纯JS,还有跨浏览器解决方案(包括IE7)

enter image description here

5 个答案:

答案 0 :(得分:31)

var style = window.getComputedStyle(document.getElementById("Example"), null);
style.getPropertyValue("height");

以上版本适用于现代浏览器。请检查currentStyle的IE浏览器。

答案 1 :(得分:2)

clientHeight-指定高度,包括 填充,但不包括 边界

getComputedStyle-一种利用元素的CSS规则并检索属性值(填充)的方法

使用parseInt是剥离单位并仅保留数字值(以像素为单位)的一种方法。
parseFloat也可以用于更精确的亚像素测量

请注意,所有值都会由DOM API自动转换为像素

function getInnerHeight( elm ){
  var computed = getComputedStyle(elm),
      padding = parseInt(computed.paddingTop) + parseInt(computed.paddingBottom);

  return elm.clientHeight - padding
}

演示:

// main method
function getInnerHeight( elm ){
  var computed = getComputedStyle(elm),
      padding = parseInt(computed.paddingTop) + parseInt(computed.paddingBottom);
  
  return elm.clientHeight - padding
}

// demo utility function
function printInnerHeight( selector ){
  console.clear()
  console.log(
    getInnerHeight( document.querySelector(selector) )
  )
}
body{ display: flex; padding:0; margin: 0; }
div{ flex: 1; }

.demo1{
  padding-top: 2vh;
  padding-bottom: 1vh;
  margin: 30px;
  border: 10px solid salmon;
  box-sizing: border-box;
  outline: 1px solid red;
}

.demo2{
  padding-top: 2vh;
  padding-bottom: 4vh;
  margin: 30px;
  border: 10px solid salmon;
  border-bottom-width: 0;
  height: 150px;
  outline: 1px solid red;
}


p::before{
  content: '';
  display: block;
  height: 100%;
  min-height: 50px;
  background: lightgreen;
}
<div>
  <h2>inner height should be ~50px</h2>
  <button onclick="printInnerHeight('.demo1')">Get Inner Height</button>
  <p class='demo1'></p>
</div>
<div>
  <h2>inner height should be ~150px</h2>
  <button onclick="printInnerHeight('.demo2')">Get Inner Height</button>
  <p class='demo2'></p>
</div>

答案 2 :(得分:1)

您可以简单地使用clientHeightclientWidth属性。

MDN web doc for Element.clientHeight — clientWidth的工作方式完全相同。

答案 3 :(得分:0)

来自评论的编辑:

http://jsfiddle.net/hTGCE/1/(预计会有更多代码)

在互联网上你会发现这样的功能:

  function getRectangle(obj) {

          var r = { top: 0, left: 0, width: 0, height: 0 };

          if(!obj)
             return r;

          else if(typeof obj == "string")
             obj = document.getElementById(obj);


          if(typeof obj != "object")
             return r;

          if(typeof obj.offsetTop != "undefined") {

             r.height = parseInt(obj.offsetHeight);
             r.width  = parseInt(obj.offsetWidth);
             r.left = r.top = 0;

             while(obj && obj.tagName != "BODY") {

                r.top  += parseInt(obj.offsetTop);
                r.left += parseInt(obj.offsetLeft);

                obj = obj.offsetParent;
             }
          }
          return r;
       }

如果你想减去填充/边框宽度是在css文件中设置的而不是动态的样式属性:

    var elem = document.getElementById(id);
    var borderWidth = 0;

          try {
             borderWidth = getComputedStyle(elem).getPropertyValue('border-top-width');

             } catch(e) {

             borderWidth = elem.currentStyle.borderWidth;
          } 
    borderWidth = parseInt(borderWidth.replace("px", ""), 10);

与填充相同。然后你计算它。

答案 4 :(得分:-1)

我遇到了同样的问题,发现没有原生的跨平台解决方案,但解决方案很容易通过

var actual_h = element.offsetHeight;

            if(parseInt(element.style.paddingTop.replace('px','')) > 0){
                actual_h=actual_h -  parseInt(element.style.paddingTop.replace('px',''));

            }
            if(parseInt(element.style.paddingBottom.replace('px','')) > 0){
                actual_h=actual_h -  parseInt(element.style.paddingBottom.replace('px',''));

            }