jQuery检查字体粗细是正常还是粗体

前端之家收集整理的这篇文章主要介绍了jQuery检查字体粗细是正常还是粗体前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用以下代码设置font-weight属性
$(this).css({ 'font-weight': 'normal' });

现在我想检查一个元素是否具有粗体或正常的font-weight propety,我该怎么做?

解决方法

你可以使用它:
fontWeight = $(this).css('font-weight')

比较:

if (fontWeight  == 'normal'|| fontWeight  == '400')
//or
if (fontWeight  == 'bold' || fontWeight  == '700')
原文链接:https://www.f2er.com/jquery/176818.html

猜你在找的jQuery相关文章