<script language="javascript"> var t = 3.1415; alert("int(" + t + ") = " + int(t)); /******** 内置取整函数 *********/ alert("parseInt(" + t + ") = " + parseInt(t)); /******** floor是地板的意思,顾名思义是向下取整 *********/ alert("Math.floor(" + t + ") = " + Math.floor(t)); /******** 四舍五入函数 *********/ alert("Math.round(" + t + ") = " + Math.round(t)); /******** ceil 是天花板的意思,顾名思义是向上取整 *********/ alert("Math.ceil(" + t + ") = " + Math.ceil(t)); /******** 自定义取整函数,原理是扣除余数 *********/ function int(num) { return num - num % 1 } </script>