我想将一个 div 的 outerheight() 值与另一个 div 的 padding-top 值相加。这是我的功能
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; 我通常很容易总结东西,我不确定为什么会发生这种情况以及我做错了什么。非常感谢任何帮助。