我需要得到一个div的高度。我无法在 css 中设置高度,因为内容可能会改变(这取决于其中的内容)。我试过了:
var buttonsHeight = $(".buttonsContainer").height();
和
var buttonsHeight = $(".buttonsContainer").outerHeight();
和
var buttonsHeight = $(".buttonsContainer").innerHeight();
在任何情况下buttonsHeight
都是null
.
CSS:
.buttonsContainer{
padding:31px 16px 0;
position:fixed;
}
小提琴:http: //jsfiddle.net/U7Kck/3/
如果替换 padding:20px 0; 高度:40px 然后buttonsContainer看起来很好......