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
- SubString
- 세션사용법
- strtotime
- disabled
- Selector
- 웹프로그래밍
- parent of iframe
- JQuery
- HTML
- 쿠키
- 세션
- Meta Tag
- 시간계산
- mb_strimwidth
- php
- element추가
- date
- File
- accept
- strpos
- ucfirst
- 이전주소
- indexOf
- mysql
- input
- date포맷
- 문자열포함여부
- Javascript
- attr
- CSS
Archives
- Today
- Total
목록attr (2)
Heojju
[jQuery] 다중 select
선택 a b 선택 1 2 선택 ㄱ ㄴ $("#first").change(function(){ if(this.value!=""){ $("#second").removeAttr("disabled"); }else{ $("#second").attr("disabled", "disabled"); $("#third").attr("disabled", "disabled"); }});$("#second").change(function(){ if(this.value!=""){ $("#third").removeAttr("disabled"); }else{ $("#third").attr("disabled", "disabled"); }});
웹개발/jQuery
2017. 2. 9. 11:47
[jQuery] 제이쿼리에서 클래스(class) 이름 추가/삭제
▤ 클래스 추가 [addClass]$(this).addClass('className'); // 클래스에 className 이 추가(기존 클래스 존재)$(this).addClass('className1 className2'); ▤ 클래스 삭제 [removeClass] $(this).removeClass('className'); // 클래스에 className 이 삭제(다른 클래스 그대로)$(this).removeClass('className1 className2'); ▤ 클래스 변경 [attr]$(this).attr('class','className'); // 클래스 이름이 className로 변경(기존 클래스 사라짐) ▤ 클래스 토글 [toggleClass]$('#subject').click(functi..
웹개발/jQuery
2016. 12. 14. 10:52