gpt4 book ai didi

javascript - 如何获得div内3个p标签的总高度?

转载 作者:行者123 更新时间:2023-11-30 18:20:52 27 4
gpt4 key购买 nike

这是我的代码

<div class="entry-content"> <p>some text...</p> <p>some text...</p> <p>some text...</p> </div>

我的 entry-content div 有绝对定位,因此 p 标签内的文本位于页脚下方。我必须使用 javascript 将 entry-content 的高度固定为所有 p 标签的总高度。请帮忙。

最佳答案

使用outerHeight (获取匹配元素集中第一个元素的当前计算高度,包括填充、边框和可选的边距。)

var total = 0;
$('.entry-content').find('p').each(function() {
total += $(this).outerHeight(true);
});
$('.entry-content').height(total);

关于javascript - 如何获得div内3个p标签的总高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12069612/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com