微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jquery – 如何获得具有display:none的父元素的元素的高度?

如何获得具有display:none的父元素的元素的高度?

这里有一个例子:jsfiddle.net

谢谢

卢卡斯

解决方法

暂时显示()一个元素来检索孩子的身高似乎工作正常.

HTML:

<div id="target" style="display:none;">
    <!-- Add a background color to see if it's noticeable -->
    <div style="height:123px; background:#000;"></div>
</div>

JS:

// Show the hidden parent of the element we want the height of
$("#target").show(0,function(){
    // Find and grab the height of the element we want
    the_height = $(this).find("div").height();
// Hide parent and display child's height after it
}).hide().after(the_height);

演示:jsfiddle.net/Gts6A/72

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐