Math.ceil()
|
Math.ceil(x)
參數:
返回值:
返回大於或等於x,而且與之最接近的整數。
注:
若是x是正數,則把小數「入」;若是x是負數,則把小數「舍」。
例:
<script type="text/javascript">
document.write( Math.ceil(1.2)+", "+Math.ceil(1.8)+", "+Math.ceil(-1.2)+", "+Math.ceil(-1.8) ); </script>
輸出結果爲:
document.write( Math.ceil(1.2)+", "+Math.ceil(1.8)+", "+Math.ceil(-1.2)+", "+Math.ceil(-1.8) ); 2, 2, -1, -1
|
Math.floor()
|
Math.floor(x)
參數:
返回值:
返回小於或等於x,而且與之最接近的整數。
注:
若是x是正數,則把小數「舍」;若是x是負數,則把小數「入」。
例:
<script type="text/javascript">
document.write( Math.floor(1.2)+", "+Math.floor(1.8)+", "+Math.floor(-1.2)+", "+Math.floor(-1.8) ); </script>
輸出結果爲:
document.write( Math.floor(1.2)+", "+Math.floor(1.8)+", "+Math.floor(-1.2)+", "+Math.floor(-1.8) ); 1, 1, -2, -2
|
Math.round()
|
Math.round(x)
參數:
返回值:
與x最接近的整數。
例:
<script type="text/javascript">
document.write( Math.round(1.2)+", "+Math.round(1.8)+", "+Math.round(-1.2)+", "+Math.round(-1.8) ); </script>
輸出結果爲:
document.write( Math.round(1.2)+", "+Math.round(1.8)+", "+Math.round(-1.2)+", "+Math.round(-1.8) ); 1, 2, -1, -2
|
Math.abs(x)獲得一個數值的絕對值javascript