본문 바로가기
Web Programing!/JQuery

[JQEURY] 숫자만 입력하기

by 어설픈봉봉이 2012. 6. 27.
반응형
SMALL

 

 

 

[JQEURY] 숫자만 입력하기

 

 

 

$("#boardPageCount") =  원하는 클래스명으로 변경

 

 

  $(document).ready(function() {
    $("#boardPageCount").css('imeMode','disable').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, '') );
      }
    });
  });

 

 

 

 

반응형