Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- C#
- Objective C
- 티스토리 초대
- ios
- 메모리
- MySQL
- java
- Database
- 인코딩
- JavaScript
- encoding
- UIWebView
- iphone
- 한글
- XML
- permgen space
- udp
- 티스토리 초대장
- Memory
- Android
- HTML
- Eclipse
- 톰켓
- spring
- jsp
- ipad
- 이클립스
- jQuery
- Tomcat
- WebView
Archives
- Today
- Total
suroMind
[JavaScript]jquery dialog enter 누를시 닫히는 현상 본문
출처 : http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem
http://blog.naver.com/PostView.nhn?blogId=lcoguss&logNo=199048137
html의 input 에서 문자 입력 후에 enter를 누를 시 dialog가 닫혀버리는 현상이 있다.
아래처럼 keyCode가 13일때 아무런 처리를 하지 않으면 된다.
$('.dialog').find('input').keypress(function(e) { if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) { //$(this).parent().parent().parent().parent().find('.ui-dialog-buttonpane').find('button:first').click(); /* Assuming the first one is the action button */ return false; } });
'IT분야 > Javascript' 카테고리의 다른 글
[Jquery]html 동적추가할 경우 Jquery datepicker 추가 (0) | 2013.12.17 |
---|---|
[JAVASCRIPT]JSON 오류검사 (1) | 2013.02.26 |
jquery ui datepicker (0) | 2012.11.04 |
Comments