1655| 3
|
[有事请教] 遇到了取整bug,哪位大佬懂? |
100星屑
最佳答案let x=1.00000001;
let xy=2.0000000000000003;
console.log(x)
console.log(xy)
console.log(Math.floor(x))
console.log(Math.ceil(xy))
可以啊不过16位就是最大值了 你可以看到Math.ceil 2.0000000000000003 变成2.0000000000000004 再多一位就变成2
如果你知道想要保留小数的多少位就用toFixed
xy.toFixed(5) 2.20000 保留5位小数
保留完再用 round fioor ceil 就可以了
console.log(Math.ceil(xy.toFixed(2)))
...
| ||
点评
this.drawText((Math.floor(newValue4*100000)*0.001).toFixed(1)+"%", x, y+this.lineHeight() *0.83*1, 48, 'right');这样弄了,唔,原来如此
this.resetTextColor();this.drawText(Math.floor(100000*this._actor.xparam(0))*0.001+"%", x + 360, y + lineHeight *0*1, 60, 'right');。好像不顶用,不过,我暂时这样弄了(还在实测)
评分 | ||
站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作
GMT+8, 2024-11-18 15:37
Powered by Discuz! X3.1
© 2001-2013 Comsenz Inc.