var h = game.ship.hull.hullIntegrity(); //returns int from 0-100
var hstr = h.toString()+"%";
gcp.hullIntegrity.text = hstr;
gcp.hullHealth.text = game.ship.hull.health;
//colorize data
console.log(h);
if (h === 100) {
gcp.hullIntegrity.addColor("#05AA0D",0);
} else if (75 <= h < 100) {
console.log("yellow: ", h + " >= 75.");
gcp.hullIntegrity.addColor("#FFEC0D",0);
} else if (25 <= h < 75) {
console.log("red:", h + " < 75.");
gcp.hullIntegrity.addColor("red",0);
} else if (h < 25) {
console.log("grey");
gcp.hullIntegrity.addColor("grey",0);
}
我正在尝试根据其值为画布文本对象的显示着色。由于某种原因,先前的代码具有以下行为:
当h = 100时,显示为绿色。这是对的。
当h 当h
Console.log显示:
70
yellow: 70 >= 75.
但是70显然小于75,那么为什么控制台不显示“红色”呢?
为什么?
最佳答案
将您的代码更改为
var h = game.ship.hull.hullIntegrity(); //returns int from 0-100
var hstr = h.toString()+"%";
gcp.hullIntegrity.text = hstr;
gcp.hullHealth.text = game.ship.hull.health;
//colorize data
console.log(h);
if (h === 100) {
gcp.hullIntegrity.addColor("#05AA0D",0);
} else if (h >= 75 && h < 100) {
console.log("yellow: ", h + " >= 75.");
gcp.hullIntegrity.addColor("#FFEC0D",0);
} else if (h >= 75 && h < 100) {
console.log("red:", h + " < 75.");
gcp.hullIntegrity.addColor("red",0);
} else if (h < 25) {
console.log("grey");
gcp.hullIntegrity.addColor("grey",0);
}
关于javascript - JavaScript中的if/if else逻辑,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34350264/