1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | //콤마찍기 function comma(str) { str = String(str); return str.replace(/(\d)(?=(?:\d{3})+(?!\d))/g, '$1,'); } //콤마풀기 function uncomma(str) { str = String(str); return str.replace(/[^\d]+/g, ''); } //값 입력시 콤마찍기 function inputNumberFormat(obj) { obj.value = comma(uncomma(obj.value)); } //<input type="text" onkeyup="inputNumberFormat(this)" /> |
'개발' 카테고리의 다른 글
[java] an internal build error has occurred. see the error log for more information 에러 (0) | 2016.02.04 |
---|---|
[ionic] 상단 제목 숨기기 (0) | 2016.01.22 |
[javascript] 따라다니는 메뉴 (0) | 2015.12.07 |
[javascript] radio 유효성 체크 (0) | 2015.12.04 |
[javascript] 랜덤 메뉴 (0) | 2015.08.17 |