获取动态变化高度div的高度
我如何确定(使用 jQuery?)div 的高度?它的高度没有在 CSS 中定义 - 所以它是可变的并且基于内容。
我尝试过 $('#div').height() - 返回 0。
有想法吗?
编辑:(代码)
$(document).ready(function () {
PositionBottomPicture();
});
function PositionBottomPicture() {
var parentOffset = $('#left_pane').offset();
var parentsHeight = $('#left_pane').height();
var childsTopPostion = (parentOffset.top + parentsHeight);
$('#bottom_pic').offset({ top: childsTopPostion, left: parentOffset.left });
}
CSS:
#left_pane
{
float: left;
margin-left: 27px;
position: relative;
}
其中“left_pane”和“bottom_pic”是div。
谢谢!
How can I determine (using jQuery?) the height of a div? Its' height is not defined in CSS - so it's fluid and based on the contents.
I've tried $('#div').height() - which returns 0.
Ideas?
EDIT: (the code)
$(document).ready(function () {
PositionBottomPicture();
});
function PositionBottomPicture() {
var parentOffset = $('#left_pane').offset();
var parentsHeight = $('#left_pane').height();
var childsTopPostion = (parentOffset.top + parentsHeight);
$('#bottom_pic').offset({ top: childsTopPostion, left: parentOffset.left });
}
CSS:
#left_pane
{
float: left;
margin-left: 27px;
position: relative;
}
where 'left_pane' and 'bottom_pic' are divs.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是您可能没有等待 div 加载到 DOM 中。
尝试以下方法:
使用 jQuery 提供的 Document Ready 工具将等待元素被处理。
The problem is you're probably not waiting for the div to load into the DOM.
Try something along the lines of:
Using the Document Ready tool provided by jQuery will wait till the element has been processed.
如果“left_pane”仅包含绝对定位的元素,则其高度将为零。
If 'left_pane' only contains absolutely positioned elements it's height will be zero.