<html>
<body>
<script type="text/javascript">
document.write(Math.round(0.60)+"<br />");
document.write(Math.round(0.50)+"<br />");
document.write(Math.round(0.49)+"<br />");
document.write(Math.round(-4.50)+"<br />");
document.write(Math.round(-4.60));
</script>
</body>
</html>
【round() 方法可把一个数字舍入为最接近的整数。】