WEB.JS/10.EVENT_JS
chapter06 : 키보드_이벤트
GAWON
2023. 5. 22. 09:20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="#">
<input type="text" onkeydown="keyDownFunc()">
<div id="content"></div>
</form>
<script type="text/javascript">
function keyDownFunc(){
document.querySelector("#content").innerHTML = event.keyCode;
}
</script>
</body>
</html>