jQuery 엔터키 이벤트
1. 엔터키 이벤트
- Script
1
2
3
4
5
6
7
8
$(document).ready(function() {
// ID가 message에서 엔터키를 누를 경우
$("#message").keydown(function (key) {
if (key.keyCode == 13) {
alert("엔터키 누름");
}
});
});
- Html
1
<input type="text" id="message" name="message"/>
[출처 및 참고]
This post is licensed under CC BY 4.0 by the author.