검색 페이지 작성시 엔터키로 submit 하는 방식입니다.
엔터의 key 코드는 13이기 때문에 key 코드 13인지 확인해서 submit 하면 됩니다.
<!doctype html> <html lang="kr"> <head> <meta charset="utf-8"> <title>demo</title> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script> $('form input').keydown(function(e) { if (e.keyCode == 13) { $('form').submit(); } }); </script> </head> <body> <form action="#"> <input type="text" id="searchWord"/> </form> </body> </html>
Html 색상표 모음, 색상코드표 (RGB), 이미지X, 복사 가능 (0) | 2016.09.07 |
---|---|
Table을 DIV로 표현하기 (예제) (0) | 2016.09.06 |
jQuery, JavaScript 새로고침(reload) (0) | 2016.08.25 |
jQuery tr 추가 (입력창 추가), jQuery 테이블 행 추가/삭제, selector last name (2) | 2016.08.18 |
jquery 뒤로가기 (0) | 2016.08.17 |
댓글 영역