32

如何在没有填充和边框的情况下获得元素的内部高度?

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

在此处输入图像描述

4

5 回答 5

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

上述版本将在现代浏览器中运行。请检查currentStyleIE 浏览器。

于 2012-11-17T23:20:42.247 回答
6

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>

于 2020-01-24T15:59:51.097 回答
2

从评论编辑:

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);

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

于 2012-11-17T23:22:09.590 回答
0

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

Element.clientHeight 的 MDN Web 文档— clientWidth 的工作方式完全相同。

于 2019-02-15T02:43:47.733 回答
-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',''));

            }
于 2014-02-25T22:32:22.423 回答