前端之家收集整理的这篇文章主要介绍了
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