0

如何获得位置固定的元素的高度?

代码:

elm.outerHeight(true)

当位置设置为固定时,此代码将返回 0

4

3 回答 3

0

您也可以简单地使用.height()固定位置元素,如:

var h = $('div').height();

演示: http: //jsfiddle.net/C2s8T/ - 适用于 FF 和 Chrome

于 2012-11-07T13:48:26.060 回答
0

你可以试试这个:

     getComputedStyle(div).position
于 2012-11-07T13:49:19.677 回答
-2

您可以使用jQuery.offset(); 为了这。

喜欢$("div.container").offset().top;$("div.container").offset().left;

于 2012-11-07T13:47:11.693 回答