标签:公司 补充 2.7 idt math java height 函数 floor
1 2 3 4 5 6 7 8 9 |
alert(Math.ceil(25.9)); //26 alert(Math.ceil(25.5)); //26 alert(Math.ceil(25.1)); //26 alert(Math.round(25.9)); //26 alert(Math.round(25.5)); //26 alert(Math.round(25.1)); //25 alert(Math.floor(25.9)); //25 alert(Math.floor(25.5)); //25 alert(Math.floor(25.1)); //25 |
Javascript Math ceil()、floor()、round()三个函数的区别
标签:公司 补充 2.7 idt math java height 函数 floor
原文地址:http://www.cnblogs.com/dandeliongogo/p/6610929.html