2

如何计算具有绝对位置的孩子的容器的高度?我们可以假设只有直接子级是绝对定位的。孩子有相同的类(没有 ID)并被旋转,一些使用填充定位,如下所示:

<div class=my-view style="position: relative";>
<div class=my-child style="position: absolute; top: 5px; left: 10px; -webkit-transform: rotate(13deg);">
<div class=my-child style="position: absolute; padding-bottom: 5%; padding-left: 10%; -webkit-transform: rotate(-6deg);">
</div>
</div>

(对于其他浏览器,转换标签当然看起来不同)

PS如果有必要,孩子可能有身份证

[更新]也许像这样的代码会起作用,但不会,因为在循环之后 oTot.tot 为零(“tot”就像“total”):

  var oTot = { tot: 0 };  
  $(".my-view .my-child").each(function() {
    var h = $(this).outerHeight();
    var y = $(this).position().top + h;
    if (y > oTot.tot) {
      oTot.tot = y;
    }
  });
4

1 回答 1

0

试试它的解决方案。

var oTot = { tot: 0 };  
$(".my-child").each(function() {
    var h = $(this).outerHeight(),
        y = $(this).position().top + h;

    if (y > oTot.tot) {
      oTot.tot = y;
    }
});

console.log(oTot);
于 2012-11-23T10:05:10.137 回答