Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

GlobalEventHandlers.onkeyup

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

onkeyup 속성은 현재 요소에서 onKeyUp 이벤트 핸들러를 반환합니다.

문법

element.onkeyup = event handling code

예제

 <input type="text" onKeyUp="keyWasPressed(event)">
 <script>function keyWasPressed(evt){ console.log(evt.keyCode) }</script>

참고

keyup 이벤트는 사용자가 눌렀던 키를 놓을 때 발생합니다.

명세서

명세 내용이 없습니다.

문서 태그 및 공헌자

 이 페이지의 공헌자: wizardbear
 최종 변경: wizardbear,