코드 복사 코드는 다음과 같습니다. <!--<BR>함수 formatFloat(src, pos)<BR>{<BR> return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos );<BR>}</P> <P>alert(formatFloat("1212.2323", 2));<BR>//--><br> 다음과 같은 방법도 있습니다. 코드 복사 코드는 다음과 같습니다. var test=88888.234 alert(test; .toFixed( 2)) // Float 데이터는 소수점 이하 2자리로 반올림됩니다. function to2bits(flt) { if(parseFloat(flt) == flt) return Math.round(flt * 100) / 100 ; // 소수점 4자리까지, Math.round(flt * 10000) / 10000을 반환 else return 0