查找动态插入元素中的行高

发布于 2024-12-14 12:51:43 字数 119 浏览 0 评论 0原文

在我可能动态插入到 DOM 中的特定 div/span 中,我需要在该 DOM 元素中找到 1em 计算高度(渲染后的高度)。

只是想知道在我开始之前是否有人已经知道这样做的好方法。

Within a particular div/span that I might dynamically insert into the DOM, I need to find the 1em computed height(height after rendering) within that DOM element.

Just wanted to know if anyone already knows of a good way to do this before I start out.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

软的没边 2024-12-21 12:51:43

在 jQuery 中,您需要 .css() 方法。例如,在 Stack Overflow 上:

$(document.body).css('line-height'); //-> "12px"

在“vanilla”JavaScript 中,您需要 getCompulatedStyle[规格< /a>]对于现代浏览器,或 currentStyle 对于旧版本IE 版本。

In jQuery you want the .css() method. For example, here on Stack Overflow:

$(document.body).css('line-height'); //-> "12px"

In 'vanilla' JavaScript you want getComputedStyle [specs] for modern browsers, or currentStyle for older IE versions.

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