本文實例講述了JavaScript里四捨五入函數round用法。分享給大家供大家參考。具體如下:
JavaScript的Math物件包含了一個round方法用於對數字進行四捨五入操作,下面的程式碼詳細演示了其用法
<!DOCTYPE html> <html> <body> <p id="demo"> Click the button to round the number 2.5 to its nearest integer. </p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("demo").innerHTML=Math.round(2.5); } </script> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。