floor()方法的基本语法:
Math.floor( x ) ;
x表示数字,返回小于或等于数字x的最大整数。
我们下面来看具体的示例
代码如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script type="text/javascript"> document.write(Math.floor(-2)+"<br/>"); document.write(Math.floor(-2.56)+"<br/>"); document.write(Math.floor(2.56)+"<br/>"); document.write(Math.floor(7.2+9.3)); </script> </body> </html>
浏览器上运行效果如下:所有数字的输出都会小于或等于其最大整数。
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com