我需要根据CSS属性进行数值计算。但是,当我使用它来获取信息时:
$(this).css('marginBottom')
它返回值“ 10px”。有没有窍门刚开值的数字部分无论是px或%或em或什么?
px
%
em
这将清除字符串中的所有非数字,非点和非减号:
$(this).css('marginBottom').replace(/[^-\d\.]/g, '');
更新为负值