JavaScript
JavaScript Math(算数) 对象
round() - 如何使用 round()。
源代码:
点击运行 »
<p id="demo">单击按钮舍入与“2.5”最接近的整数</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("demo").innerHTML = Math.round(2.5); } </script>
运行结果:
点击运行 »