javascript中floor使用方法总结
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>
浏览器上运行效果如下:所有数字的输出都会小于或等于其最大整数。
相关推荐
hzcyhujw 2019-06-24
jibkfv 2019-06-28
lickylin 2019-06-27
wangdoudou0 2011-07-27
lxrlxr 2014-11-03
土豆土豆 2019-01-14
cshao 2017-02-06
86403563 2016-12-19
深思千年 2019-04-26
huzipiaoyiba 2016-05-14
小白努力 2013-10-08
lispython 2015-03-17
wgPython 2019-04-15
jackyfever 2019-04-06
rmrfmysql 2019-04-06
PHP100 2019-03-27