获取 div 的计算字体大小

发布于 2024-10-21 18:31:48 字数 267 浏览 7 评论 0原文

众所周知,HTML 元素的字体大小要么像 style="font-size:10px" 那样显式设置,要么由浏览器根据样式表和父属性中的规则和属性计算。

在 javascript 中计算 font-size 值可能是一项相当复杂的任务,因为正确的结果可能取决于元素 className 属性中不一定存在的类。

有没有办法可以直接获取计算出的字体大小,例如 div.style['calculated-font-size'] ? - 谢谢

As we know, the font-size of a HTML-element is either set explicitly like style="font-size:10px" or calculated by the browser according to rules and properties from style sheets and parent properties.

It could be a rather complex task to calculate the font-size value in javascript as the correct result might depend on classes that do not necessarily exist in the elements className attribute.

Is there a way I can get the calculated font-size directly, like div.style['calculated-font-size'] ? - thanx

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

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

发布评论

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

评论(1

面犯桃花 2024-10-28 18:31:48

函数 elementCurrentStyle(element, styleName){
if (element.currentStyle){
var i = 0,temp =“”,changeCase = false;
for (i = 0; i < styleName.length; i++)
if (styleName[i] != '-'){
temp += (changeCase ? styleName[i].toUpperCase() : styleName[i]);
更改大小写=假;
} 别的 {
更改案例 = true;
}
样式名称=临时;
return element.currentStyle[styleName];
} 别的 {
返回 getComputedStyle(element, null).getPropertyValue(styleName);
}
我已经描述了这个“

alert(elementCurrentStyle(myDiv,"font-size"));

获取计算样式< /a>”几周前的问题在这里。

干杯,

function elementCurrentStyle(element, styleName){
if (element.currentStyle){
var i = 0, temp = "", changeCase = false;
for (i = 0; i < styleName.length; i++)
if (styleName[i] != '-'){
temp += (changeCase ? styleName[i].toUpperCase() : styleName[i]);
changeCase = false;
} else {
changeCase = true;
}
styleName = temp;
return element.currentStyle[styleName];
} else {
return getComputedStyle(element, null).getPropertyValue(styleName);
}
}

alert(elementCurrentStyle(myDiv,"font-size"));

I've describe this "getting computed style" issue few weeks ago here.

cheers,

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