我知道这对你们大多数人来说非常愚蠢,但我无法让它发挥作用;我需要根据条件添加类。
代码:
<script>
if (history.score <= 6,0)
{
$('.notabox').addClass('vermelho');
}
else if (history.score <= 8,9)
{
$('.notabox').addClass('laranja');
}
else
{
$('.notabox').addClass('verde');
}
</script>