http://www.w3schools.com/jsref/jsref_tofixed.asp
var num = new Number(13.3714); document.write(num.toFixed()+"<br />"); document.write(num.toFixed(1)+"<br />"); document.write(num.toFixed(3)+"<br />"); document.write(num.toFixed(10)); >> 13 13.4 13.371 13.3714000000 |
'프로그래밍 > Web' 카테고리의 다른 글
[html] 웹페이지에서 마우스 툴팁(Tooltip; 말풍선) 태그(Tag) (0) | 2010.05.31 |
---|---|
[script] 정규식 (0) | 2010.05.20 |
[html] IE6.0/7.0 에서 setAttribute로 css 설정 안되는 경우 (0) | 2010.05.11 |
[html] shortcut icon 붙이기 (0) | 2010.04.15 |
[html] X-UA-Compatible: IE=EmulateIE7 (0) | 2010.04.09 |