我需要有一个位置相对div加上一些位置绝对内容。现在,我正在尝试动态计算#one
的高度,然后在此演示中将其应用于#two
的顶部
但是我得到了20
(似乎没有计算#one
内图像的高度!你能不能让我知道为什么会发生这种情况以及如何阻止它? / p>
$(document).ready(function () {
var contentheight = $('#one').height();
console.log(contentheight);
$(window).on("resize", function () {
var contentheight = $('#one').height();
$("#two").css("top", bodyheight);
});
});