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 | 31 |
Tags
- disabled
- Javascript
- accept
- indexOf
- 세션
- strpos
- 문자열포함여부
- 세션사용법
- HTML
- mysql
- parent of iframe
- 시간계산
- attr
- Meta Tag
- 웹프로그래밍
- 쿠키
- mb_strimwidth
- SubString
- 이전주소
- JQuery
- File
- ucfirst
- date포맷
- Selector
- strtotime
- input
- date
- php
- element추가
- CSS
Archives
- Today
- Total
Heojju
[jQuery] 다중 select 본문
<body>
<select id="first">
<option value="">선택</option>
<option value="a">a</option>
<option value="b">b</option>
</select>
<select id="second" disabled>
<option value="">선택</option>
<option value="1">1</option>
<option value="2">2</option>
</select>
<select id="third" disabled>
<option value="">선택</option>
<option value="ㄱ">ㄱ</option>
<option value="ㄴ">ㄴ</option>
</select>
</body>
<script>
$("#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");
}
});
</script>
'웹개발 > jQuery' 카테고리의 다른 글
[jQuery] parent of the iframe element selector (0) | 2017.11.24 |
---|---|
[jQuery] draggable - div 드래그 (0) | 2017.08.23 |
[jQuery] click에 따른 마우스 휠 on off (0) | 2017.02.07 |
[jQuery] click event scroll (0) | 2017.02.06 |
[jQuery] resize() - 브라우저 크기 변환시 호출 (0) | 2017.01.25 |