본문 바로가기

js

[js]input button enter 엔터로 버튼 누르기 keypress keydown

See the Pen 띠 찾기 by sangmok-ye (@sangmok-ye) on CodePen.

 

 

 

 

$("input").keypress(function(e){
  if(e.which==13){    
  // 13번은 엔터키
    $("button").click();    
  }
})

키프레스 번호 참고

http://b1ix.net/170

esc == 27 // keypress 안먹힘, keydown으로 해결

 

참고:

https://yesm1230.tistory.com/102

 


top