[프런트엔드] 키보드 이벤트 일반 작업

웹 페이지의 일부 조작은 키보드 이벤트가 필요합니다. 예를 들어enter 키를 누르면 로그인을 할 수 있습니다.
작업 대상:document 문서 대상 window 창 대상 html 태그 요소 body 태그 요소 모두 가능
이벤트 방법:
keydown
keyup
keypress
키보드 이벤트 트리거: e.keycode
$(document).keydown(function(e) {
    console.log(e.keyCode);  //  ascII  });

일반적인 키 번호:
왼쪽(37), 위(38), 오른쪽(39), 아래(40)
2. enter 키(13), 백스페이스 키(8), 스페이스 바(32) delete(46)
대응하는 키 이름을 되돌려줍니다: String.fromCharCode(e.keyCode)
$(document).keydown(function(e) {
    console.log(String.fromCharCode(e.keyCode));  //  A B C });

ctrl 키 조합:
$(document).keydown(function(e) {
    if(e.ctrlKey && e.which == 13) {
        console.log('ctrl+enter ');
    }
});

같은 이치로 시프트 조합 키가 있지 않습니다:
if(e.shiftKey && e.which == 13) {
    console.log('shift+enter ');
}

alt 키 조합:
if(e.altKey && e.which == 13) {
    console.log('alt+enter ');
}

감사합니다!

좋은 웹페이지 즐겨찾기