英[raʊnd] 美[raʊnd]
adj.圓形的;弧形的;豐滿的,肥胖的;整數的
adv.到處;在周圍;迂迴地;朝反方向
prep.大約;繞過,環繞;(表示位置)在…四周;附近
n.圓,圓形;循環;圓形物,球狀物; (會議的)一回合
vt.& vi.使成圓形;繞行;拐過,繞過;把…四捨五入
第三人稱單數: rounds 複數: rounds 現在分詞: rounding 過去式: rounded 過去分詞: rounded 比較級: rounder 最高級: roundest
javascript round() 方法 語法
作用:把一個數字舍入為最接近的整數。
語法:Math.round(x)
#參數:x 必要。必須是數字。
返回:與 x 最接近的整數。
說明:對於 0.5,此方法將進行上舍入。例如,3.5 將舍入為 4,而 -3.5 將舍入為 -3。
javascript round() 方法 範例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <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.40) + "<br />") document.write(Math.round(-4.60)) </script> </body> </html>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例