我对一些代码有点困惑,我不确定为什么它不起作用。
这是一个If函数...
if (calorie_total<100)
{
$("#awards_info").html('bad');
}
else if (200>calorie_total>100)
{
$("#awards_info").html('okay');
}
else if (400>calorie_total>300)
{
$("#awards_info").html('good');
}
else (calorie_total>400);
{
$("#awards_info").html('great');
}
Bascailly 它正在查看总卡路里,然后告诉你你做得有多好。
但出于某种原因,即使卡路里小于 0,它也总是说“很棒”?
任何想法都会很棒?
谢谢