티스토리 뷰
$('li').each(function(e){
$(this).find('input[type=checkbox]').on('click',function(e){
if($(this).is(':checked') == true){
$(this).parents('li').addClass('on');
}else{
$(this).parents('li').removeClass('on');
}
});
});
'기타' 선택 시 input[type="text"] 활성화
$('input[type="checkbox"]').change(function(){
if($('input[name="etc"]').is(':checked') == true){
$('input[type="text"]').removeAttr('disabled');
}else{
$('input[type="text"]').attr('disabled', true);
$('input[type="text"]').val('');
}
});
'WebPublisher' 카테고리의 다른 글
[tip] safari에서 table caption hide 시 인식하지 못하는 오류 (0) | 2022.05.12 |
---|---|
[jQuery] list 더보기 버튼 (0) | 2022.05.12 |
[jQuery] select box 값 따라 input 활성화 (0) | 2022.04.20 |
[svg] 이미지 SVG 삽입하는 방법 + svg에 css 적용 (0) | 2022.04.01 |
[slick] prevArrow, nextArrow (0) | 2022.03.25 |
공지사항