<html lang="ko">
<head>
<meta charset="UTF-8">
<title>jQuery Event Method</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(function() {
// 아이디가 "key"인 요소에 keypress 이벤트를 설정함.
$("#key").on("keypress", function(event) {
$("#str").html(event.type + " : " + event.which);
});
});
</script>
</head>
<body>
<h1>.keypress() 메소드</h1>
<p>아래 텍스트 필드에 내용을 입력해 보세요!</p>
<input type="text" id="key">
<p id="str"></p>
</body>
</html>