2004年01月14日 18:29 点击:超过8000次
Math.floor(),其中Math是JavaScript的一个对象,floor是Math的属性。Math.floor()可以获得一个数的整数部分,而不是四舍五入,这在编程中比较常用,比如要使用JavaScript制作一条虚线。
用法实例:
<script>
document.write(Math.floor(400.0244))
</script>
运行结果是400。
<script>
document.write(Math.floor(3.8))
</script>
运行结果是3。
网页树树版权声明:
此文为Webshu.com独家撰稿,著作权属作者所有,禁止转载。
此文网址 http://webshu.com/column/102/54.html