Math.round()傳回四捨五入的整數
- 詳細內容
- 分類:Javascript
- 發佈:-0001-11-30, 週三 08:06
- 點擊數:3579
Javascript的Math.round()方法:
Math.round()方法會傳回輸入值四捨五入到整數後的結果,此方法是個靜態方法,也就是說不能在物件中呼叫,只能藉由Math.round()來呼叫使用。
(以下拖稿) 所謂的四捨五入到整數,意思是說,當小數點以下大於0.5時,會直接進位到整數,小於0.5時,則直接省略小數部分,譬如2.5四捨五入後會等於3,而2.3四捨五入後會等於2。
Math.round()的語法:
Math.round(x)
x:數值。
Math.round()的範例:
<script type="text/javascript">
document.writeln(Math.round(4.5));
document.writeln("<br/>");
document.writeln(Math.round(4.49999999999999));
document.writeln("<br/>");
</script>