HTML 요소 onkeydown 이벤트 keyCode 얻기

Jmnote (토론 | 기여)님의 2015년 8월 22일 (토) 19:05 판 (새 문서: ;HTML 요소 onkeydown 이벤트 키코드 읽기 ==예시== <source lang='html5'> <input type='text' id='input1'/> <script> var input1 = document.getElementById('input1') input1.o...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
HTML 요소 onkeydown 이벤트 키코드 읽기

1 예시

<input type='text' id='input1'/>
 
<script>
var input1 = document.getElementById('input1')
input1.onkeydown = function(event) {
    alert( '키코드: ' + event.keyCode );
}
</script>

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}