Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ```html <input type="text" onKeyDown="onKeyDown();"> ``` ```javascript function onKeyDown() { if(event.keyCode == 13) { //TODO : 실행시킬 코드 } } ``` --- #### 출처 - http://asm0628.tistory.com/167 open/자바스크립트에서-엔터키-enter-key-입력-감지하기.txt Last modified: 2024/10/05 06:15by 127.0.0.1