基本的に、ここにあるものを除くすべての子divの高さを計算したいのは私のコードです
var allChildDivHeight = 0;
this.children().each(function (e) {
//alert($(this).attr('id'));
if ($(this).attr('id') != 'BlindBox') {
allChildDivHeight = allChildDivHeight + $(this).outerHeight();
}
});
1つの子div名「BlindBox」を除くすべての子divの高さを計算したいです。私のコードが機能していません。問題は何ですか