가장 좋은 방법:
두 자리 숫자를 유지하는 방법인 것 같습니다.
var a = 9.39393
Alert(a.toFixed(2));
설명:
alert(Number.toFixed(9.39393));
는 9.39
를 반환하지만 ie5.5 이상에서만 지원됩니다.
다른 방법:
방법 1:
function roundFun(numberRound,roundDigit) //반올림, 예약된 자릿수는 roundDigit
{ if (numberRound> ; =0)
{
var tempNumber =parseInt((numberRound * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit)
return tempNumber;
else
{
numberRound1=-numberRound
var tempNumber = parseInt((numberRound1 * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit); > return -tempNumber; 🎜> 결과 = tmp.substr( 0,tmp.indexOf(".")+3);
경고(결과)