jquery 숫자만 입력 //일반 num_only : 무조건 숫자만입력되게 $(document).on('keypress', 'input.number', function(e){ if(e.which && (e.which 57) ) e.preventDefault(); }); $(document).on('keyup', 'input.number', function(e){ if( $(this).val() != null && $(this).val() != '' ) { var tmps = parseInt($(this).val().replace(/[^0-9]/g, '')) || 0; $(this).val(tmps); } }); $(function() { $(".number").keypre..