我需要一个div的全高,我正在使用
document.getElementById('measureTool').offsetHeight
offsetHeight
- 返回元素的高度,包括边框和填充(如果有),但不是边距
但div中的一个嵌套元素的margin-top
为20%
,因此测量结果错误。我尝试style.marginTop
和scrollHeight
但没有成功。
如何在javascript中获取元素(div)的完整高度(边框,填充,边距)?
如果没有其他方式我可以使用jQuery。
答案 0 :(得分:57)
如果你可以使用jQuery:
$('#divId').outerHeight(true) // gives with margins.
对于vanilla javascript,你需要写更多内容(比如总是......):
function Dimension(elmID) {
var elmHeight, elmMargin, elm = document.getElementById(elmID);
if(document.all) {// IE
elmHeight = elm.currentStyle.height;
elmMargin = parseInt(elm.currentStyle.marginTop, 10) + parseInt(elm.currentStyle.marginBottom, 10) + "px";
} else {// Mozilla
elmHeight = document.defaultView.getComputedStyle(elm, '').getPropertyValue('height');
elmMargin = parseInt(document.defaultView.getComputedStyle(elm, '').getPropertyValue('margin-top')) + parseInt(document.defaultView.getComputedStyle(elm, '').getPropertyValue('margin-bottom')) + "px";
}
return (elmHeight+elmMargin);
}
答案 1 :(得分:47)
这样的事情(没有jquery)怎么样?它类似于@ gdoron的答案,但有点简单。在IE9 +,Firefox和Chrome中进行了测试。
function getAbsoluteHeight(el) {
// Get the DOM Node if you pass in a string
el = (typeof el === 'string') ? document.querySelector(el) : el;
var styles = window.getComputedStyle(el);
var margin = parseFloat(styles['marginTop']) +
parseFloat(styles['marginBottom']);
return Math.ceil(el.offsetHeight + margin);
}
答案 2 :(得分:11)
var el = document.querySelector('div');
var elHeight = el.offsetHeight;
elHeight += parseInt(window.getComputedStyle(el).getPropertyValue('margin-top'));
elHeight += parseInt(window.getComputedStyle(el).getPropertyValue('margin-bottom'));
console.log(elHeight);
https://jsfiddle.net/gbd47ox1/
我认为这个解决方案更具可读性,但所提出的解决方案都没有考虑非像素的尺寸...... :(
答案 3 :(得分:7)
使用arrow functions的另一个功能解决方案:
let el = document.querySelector('div');
let style = window.getComputedStyle(el);
let height = ['height', 'padding-top', 'padding-bottom']
.map((key) => parseInt(style.getPropertyValue(key), 10))
.reduce((prev, cur) => prev + cur);
答案 4 :(得分:5)
function getallinheight(obj) {
var compstyle=(typeof window.getComputedStyle==='undefined')?obj.currentStyle:window.getComputedStyle(obj);
var marginTop=parseInt(compstyle.marginTop);
var marginBottom=parseInt(compstyle.marginBottom);
var borderTopWidth=parseInt(compstyle.borderTopWidth);
var borderBottomWidth=parseInt(compstyle.borderBottomWidth);
return obj.offsetHeight+
(isNaN(marginTop)?0:marginTop)+(isNaN(marginBottom)?0:marginBottom)+
(isNaN(borderTopWidth)?0:borderTopWidth)+(isNaN(borderBottomWidth)?0:borderBottomWidth);
}
alert(getallinheight(document.getElementById('measureTool')));
答案 5 :(得分:4)
Vanilla JavaScript ECMAScript 5.1
height
的DOMRect对象(包括padding
& border
)
var element = document.getElementById('myID'),
height = element.getBoundingClientRect().height,
style = window.getComputedStyle(element);
// height: element height + vertical padding & borders
// now we just need to add vertical margins
height = ["top", "bottom"]
.map(function(side) {
return parseInt(style['margin-' + side], 10)
})
.reduce(function(total, side) {
return total + side
}, height)
// result: compare with devtools computed measurements
document.querySelector('.result').innerText = 'Total height is: ' + height + 'px';

#myID {
padding: 10px 0 20px;
border-top: solid 2px red;
border-bottom: solid 3px pink;
margin: 5px 0 7px;
background-color: yellow;
}
.result {
margin-top: 50px;
}

<div id="myID">element</div>
<div class="result"></div>
&#13;
答案 6 :(得分:4)
依次使用所有道具,边距,边框,边距和高度。
"aggregations": {
"bundled": {
"top_hits": {
"size": 10, <--- add this
"sort": [
{
"_weight": "asc"
}
]
}
}
}
答案 7 :(得分:2)
qdev编写了一个nice solution,但是我认为offsetHeight比getBoundingClientRect()更快,更好。我还使用ES6来减少代码大小。
/**
* Returns the element height including margins
* @param element - element
* @returns {number}
*/
function outerHeight(element) {
const height = element.offsetHeight,
style = window.getComputedStyle(element)
return ['top', 'bottom']
.map(side => parseInt(style[`margin-${side}`]))
.reduce((total, side) => total + side, height)
}
答案 8 :(得分:0)
较早的解决方案可能是理想的。为了找到一种简单的方法,我想出了类似的方法。这会将目标包装在div
中。 div
的高度已经计算并四舍五入。
<div style="margin: 0; padding: 0; border: none;">
<p class="target">something info ex</p>
</div>
和JavaScript:
var height = document.querySelector(".target").parentElement.offsetHeight;
答案 9 :(得分:0)
在Vanilla JS中 在函数getAllmargin中,我们获得上边距和下边距的总和 并使用clientHeight获得包括所有填充的高度
var measureTool = document.getElementById('measureTool');
function getAllmargin(elem){
//Use parseInt method to get only number
return parseInt(window.getComputedStyle(elem, null).getPropertyValue('margin-top'))
+ parseInt(window.getComputedStyle(elem, null).getPropertyValue('margin-bottom'));
}
//Finally we get entire height
console.log(measureTool.clientHeight + getAllmargin(measureTool));