我认为这是一个非常简单的问题,但是...
var outerHeight = $('.profile').outerHeight();
$("#total-height").text(outerHeight + 'px');
现在,var
outerHeight
给我的只有第一个带有.profile
类的元素的outerHeight。如何使用
.profile
类获取所有元素的externalHeights之和? 最佳答案
循环遍历每个匹配的元素并累加外部高度:
var outerHeight = 0;
$('.profile').each(function() {
outerHeight += $(this).outerHeight();
});
$("#total-height").text(outerHeight + 'px');