我将如何停止以下返回小于0的值。我希望小于0的任何内容显示为0.任何帮助表示赞赏。
$("#spanrPower_CO2").text (Math.round(-data[0] * 16.8) * 100 / 100);
答案 0 :(得分:2)
data[0] > 0 ? 0 : -Math.round(16.8 * data[0]);
可能更清楚。
请注意,除非您接近浮点无穷大,否则* 100 / 100
是无操作。
答案 1 :(得分:0)
(Math.max(0, -data[0] * 16.8).toFixed(0));