본문 바로가기
Web Programing!/JQuery

[JQUERY] input readonly 백스페이스(backspace) event.keyCode 처리

by 어설픈봉봉이 2014. 6. 15.
반응형
SMALL

 

 

 

[JQUERY] input readonly 백스페이스(backspace) event.keyCode 처리

 

 

input type text에 readonly가 쓰일때가 있다.

 

그때 커서를 선택하고 Backspace Key를 누르게되면 뒤로가게된다.

 

그것을 막아주는 이벤트 스크립트.

 

 

$( '#selector' ).keydown(function(event) {
  if ( event.keyCode === 8 ) {
    return false;
  }
});

 

 

 

반응형