查找动态插入元素中的行高
在我可能动态插入到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 jQuery 中,您需要
.css()
方法。例如,在 Stack Overflow 上:在“vanilla”JavaScript 中,您需要
getCompulatedStyle
[规格< /a>]对于现代浏览器,或
currentStyle
对于旧版本IE 版本。In jQuery you want the
.css()
method. For example, here on Stack Overflow:In 'vanilla' JavaScript you want
getComputedStyle
[specs] for modern browsers, orcurrentStyle
for older IE versions.