javascript中round的意思是什么
在JavaScript中,round()方法的意思是将数字进行四舍五入计算,该方法可以把一个数字舍入为最接近的整数,返回的结果就是四舍五入后的结果,语法为“Math.round(数字)”。
本教程操作环境:windows10系统、javascript1.8.5版、Dell G3电脑。
javascript中round的意思是什么
round() 方法可把一个数字舍入为最接近的整数。
注意: 2.49 将舍入2 , 2.5 将舍入 3。
所有主要浏览器都支持 round() 方法
语法
Math.round(x)
x 必需。必须是数字。
示例如下:
<html> <head> <meta charset="utf-8"> <title>123</title> </head> <body> <p id="demo">单击按钮舍入与“2.5”最接近的整数</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ document.getElementById("demo").innerHTML=Math.round(2.5); } </script> </body> </html>
输出结果:
点击按钮后:
相关推荐:javascript学习教程
以上就是javascript中round的意思是什么的详细内容,更多请关注https://www.sxiaw.com/其它相关文章!