일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 웹 플랫폼 설치 관리자
- 톰캣
- 호환성
- 문자열
- maven
- null
- spring form tag
- @RequestBody
- switch
- MYSQL
- exception
- JSTL
- SSL
- 전자정부 표준프레임워크
- checbox
- 날짜
- 네이버스마트 에디터
- json
- DB
- java
- Oracle
- 이클립스
- HTML5
- 오라클
- html
- 스크립트
- jquery
- 한글
- php
- RADIO
- Today
- Total
목록Script & jQuery (46)
개인적인 정리
폼 요소 disable, readonly 설정 $(this).attr("disabled", true);$(this).attr("disabled", false); $(this).attr("readonly", true);$(this).attr("readonly", false);
offset() $('.main-visual').find('img').offset().left 상대좌표 확인은 position() 이라고 한다.
$( window ).resize(function() {$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left});});
$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left}); $( window ).resize(function() {$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left});});
jquery image slide http://owlgraphic.com/owlcarousel/demos/images.html
$('input:radio[name="typeSelect"]').bind('click', function(){if($(this).val() =="month") {$('#searchMonth').css({"display":"block"});$('#searchGigan').css({"display":"none"});}else {$('#searchMonth').css({"display":"none"});$('#searchGigan').css({"display":"block"});}});
$("input[type='button'], input[type='submit']").css({'cursor':'pointer'});