Javascript 단축키 생성: Revision history

From IT Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

23 February 2024

8 May 2023

  • curprev 19:3219:32, 8 May 2023개발새발 talk contribs 627 bytes +627 새 문서: Javascript로 웹 페이지에서 단축키 사용 가능하게 만들기 == 예제 == ex) `Ctrl + Alt + c` 을 눌렀을 때 이벤트 생성 var isCtrl, isAlt; // ctrl. Alt 눌림 여부 확인 document.onkeyup = function(e) { if (e.which == 17) isCtrl = false; if (e.which == 18) isAlt = false; } document.onkeydown = function(e) { if (e.which == 17) isCtrl = true; if (e.which == 18) isAlt = true; console.log(e.which , isCtrl, isAlt)... Tag: Visual edit