본문 바로가기

Web Progreming

[ javascript ] 자바스크립트 숫자만 입력하기



$('input[type=text].tel_box').attr({'maxlength':'4'}).css('imeMode','disabled').keypress(function(event) {

if(event.which && (event.which < 48 || event.which > 57) ) {

event.preventDefault();

}

}).keyup(function(){

if( $(this).val() != null && $(this).val() != '' ) {

$(this).val( $(this).val().replace(/[^0-9]/g, '') );

}

});