"HTML 요소 onkeydown 이벤트 keyCode 얻기"의 두 판 사이의 차이

(새 문서: ;HTML 요소 onkeydown 이벤트 키코드 읽기 ==예시== <source lang='html5'> <input type='text' id='input1'/> <script> var input1 = document.getElementById('input1') input1.o...)
 
1번째 줄: 1번째 줄:
;HTML 요소 onkeydown 이벤트 키코드 읽기
;HTML 요소 onkeydown 이벤트 키코드 읽기
;HTML 요소 onkeydown 이벤트 keyCode 얻기


==예시==
==예시==

2015년 8월 22일 (토) 19:07 판

HTML 요소 onkeydown 이벤트 키코드 읽기
HTML 요소 onkeydown 이벤트 keyCode 얻기

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 }}