获取动态变化高度div的高度

发布于 2024-10-06 04:52:18 字数 647 浏览 4 评论 0原文

我如何确定(使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

墨落成白 2024-10-13 04:52:18

问题是您可能没有等待 div 加载到 DOM 中。

尝试以下方法:

$(document).ready(function(){
        var h = $("#div").height();
        var w = $("#div").width();
;})

使用 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:

$(document).ready(function(){
        var h = $("#div").height();
        var w = $("#div").width();
;})

Using the Document Ready tool provided by jQuery will wait till the element has been processed.

温柔女人霸气范 2024-10-13 04:52:18

如果“left_pane”仅包含绝对定位的元素,则其高度将为零。

If 'left_pane' only contains absolutely positioned elements it's height will be zero.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文