숫자만입력1 jquery 폼항목 숫자만 입력받기+숫자콤마찍기 2019-10-24 업데이트 - 이율입력용 num_only3 추가. - document 전역설정으로 input 쪽에 class만 추가하면됨 $(function(){ //일반 num_only : 무조건 숫자만입력되게 $(document).on('keypress', 'input.num_only', function(e){ if(e.which && (e.which 57) ) e.preventDefault(); }); $(document).on('keyup', 'input.num_only', function(e){ if( $(this).val() != null && $(this).val() != '' ) { var tmps = parseInt($(this).val().replace.. 2019. 10. 24. 이전 1 다음