[js]数字Math.floor向下取整
Math.floor 方法用于对数值向下取整,即得到小于或等于该数值的最大整数
Math.floor 方法用于对数值向下取整,即得到小于或等于该数值的最大整数。语法如下:
Math.floor(x)
参数说明:
参数 | 说明 |
---|---|
x | 必需。必须是一个数值。 |
提示:该方法与 Math.ceil 方法正好相反。
- <script language="JavaScript">
- document.write( Math.floor(0.35) + "<br />" );
- document.write( Math.floor(10) + "<br />" );
- document.write( Math.floor(-10) + "<br />" );
- document.write( Math.floor(-10.1) );
- </script>
热门文章推荐
- [JS]window.location获取url各项参数详解
- [JS]jQuery,javascript获得网页的高度和宽度
- [JS]视频弹窗视频弹出层videoLightBox(含三种播放器的用法)
- [JS]JS提交中文encodeURI两次转码
- [JS]js版方面encodeURI转码和decodeURI解码的用法实例
- [JS]js取当前机子的时间戳实例
- [JS]AES加密(基于crypto-js)PHP后端解密
- [JS]data:image/png;base64写法的用途及说明
请稍候...