我从 wundground 完成了我的 jQuery 天气,我只想让温度变化的颜色自动更高或更低,我使用这个代码,但我不知道如何在 jQuery 中使用 CSS。
function check(temp_c) {
if (temp_c < 1 && temp_c > 10)
return '';
else if (temp_c > 11.25 && temp_c < 33.75) {
return '';
} else if (temp_c > 33.75 && temp_c < 56.25) {
return '';
} else if (temp_c > 56.25 && temp_c < 78.75) {
return '';
} else if (temp_c > 78.75 && temp_c < 101.25) {
return '';
} else if (temp_c > 101.25 && temp_c < 123.75) {
return '';
} else if (temp_c > 123.75 && temp_c < 146.25) {
return '';
} else if (temp_c > 146.25 && temp_c < 191.25) {
return '';
} else if (temp_c > 191.25 && temp_c < 213.75) {
return '';
} else if (temp_c > 213.75 && temp_c < 236.25) {
return '';
} else if (temp_c > 236.25 && temp_c < 258.75) {
return '';
} else if (temp_c > 258.75 && temp_c < 281.25) {
return '';
} else if (temp_c > 281.25 && temp_c < 303.75) {
return '';
} else if (temp_c > 303.75 && temp_c < 326.25) {
return '';
} else {
return '';
}
}
var temp_c = data.current_observation.temp_c ;
var temperature = check(temp_c );