본문 바로가기
728x90
반응형
SMALL

IT/jQuery7

jquery Ajax esc key 무시 방법 jquery로 ajax 통신중 사용자가 esc key 를 누르면 통신이 끊기면서 erorr 를 return 한다.이를 막기 위해 아래와 같은 source 를 추가 !!! $(document).keydown(function(e) { if (e.keyCode == 27) { e.preventDefault(); } }); 2013. 12. 23.
jQuery Dialog 에 datepicker 자동 포커싱 문제 해결 방법 Dialog 는 open 되면서 가장 첫번째 input elements 에 자동으로 포커싱 되게 되어있다.때문에 Dialog 에 datepicker 가 가장 먼저 있다면 자동으로 datepicker 가 open 된다.이를 해결 하기 위하여 많은 방법을 해 봤지만 가장 쉬운 방법은 아래처럼 input 'text' 를 datepicker 보다 먼저넣어두는 것이다.괜한걸로 시간 많이 쓰지 말자 2012-07-03 -------------------------------------------------------------------------------------------------------- 위의 해결 방법은 꼼수 였고, input box 가 보일 위험이 있다. 더 좋은 해결 방법은 아래와 같이 한다. .. 2013. 12. 23.
jquery selectbox 처리 선택된 값 읽기 $("#myselect option:selected").val(); 선택된 내용 읽기 $("#myselect option:selected").text(); 선택된 위치 var index = $("#myselect option").index($("#myselect option:selected")); 항목 추가 $("#myselect").append("1"); $("#myselect").append("2"); option 변경 $("#myselect").html("Some orangesMore OrangesEven more oranges"); // 지정된 index 위치의 option 변경 $("#myselect option:eq(1)").replaceWith("Some apples"); $.. 2013. 12. 23.
728x90
반응형
LIST