我想將div的outerheight()值與另一個div的padding-top值相加。這裏是我的功能sumding outerHeight with padding給出錯誤結果
var headerHeight = $('header').outerHeight() + "px";
console.log(headerHeight);
var containerPT = $(".container").css('padding-top');
console.log(containerPT);
var totalSpace = (headerHeight + containerPT);
console.log(totalSpace);
,其結果是:
//headerHeight
474px
//containerPT
150px
//totalSpace
474px150px
結果我需要的當然是474 + 150 = 624px; 我通常總結一些東西,我不知道爲什麼會發生這種情況,我做錯了什麼。 任何幫助非常感謝。
我更新了答案,檢查出來:) –