jquery查找所有divs孩子的总高度

时间:2012-10-24 11:55:21

标签: javascript jquery jquery-selectors

嘿,我有一个包含5个div的div,我想将它们的所有高度加在一起,

根据杰夫的回答,这是我最终使用的解决方案。谢谢你帮助我。

var ev_totalHeight = 0;
$("#events > div").each(function(){
    ev_totalHeight += $(this).innerHeight();
});



function events_open() {
 $("#events").animate({
"height": ev_totalHeight
  }, 450 );
}

$("#events").click(function() {
events_open();
});

3 个答案:

答案 0 :(得分:11)

这是一个小提琴:http://jsfiddle.net/yj8sL/2/

$(function(){
    var totalHeight = 0;
    $("#parent > div").each(function(){
        totalHeight += $(this).height();
    });
    alert("Total height of all divs: "+totalHeight);
});

如您所见,有5个div,每个高度为100px,因此总高度为500px。

编辑:您的下一个问题(使用动画)是您没有告诉它您使用的是哪个单位(在您的情况下,像素):

 $("#events").animate({
    "height": ev_totalHeight+"px"
 }, 450 );

答案 1 :(得分:3)

这些方面的东西:

var height = 0;

$('#events > div').each(function(){
    height += $(this).height();
});

// apply calculated height to another element
$('#myotherdiv').height(height + 'px');

答案 2 :(得分:0)

循环遍历它们并添加高度,例如

var height;
$("#events").each(function() {
    height += $(this).height();
});