我使用以下代码设置font-weight属性:

$(this).css({ 'font-weight': 'normal' });

现在,我要检查某个元素是否具有粗体或正常的字体粗细属性,我该怎么做?

最佳答案

您可以使用以下方法获取它:

fontWeight = $(this).css('font-weight')

比较:
if (fontWeight  == 'normal'|| fontWeight  == '400')
//or
if (fontWeight  == 'bold' || fontWeight  == '700')

关于jquery - jQuery检查字体粗细是正常还是粗体,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22323035/

10-09 09:34