1. value값으로 체크하기
$("#radioTest:radio[value='orange']").attr("checked", true) ;
2. value값으로 체크 확인
$("#radioTest:radio[value='orange']").is(":checked") ;
* true / false 반환
3. 체크된 라디오버튼 value 값 가져오기
$('#radioTest:checked').val() ;
$(":radio[id='radioTest']:checked").val() ;
4. 체크 해제
$("#radioTest").removeAttr("checked") ;
5. 라디오버튼 활성화/비활성화 처리
- 비활성화
$("#radioTest").attr( "disabled" );
- 활성화
$("#radioTest").removeAttr( "disabled" );
출처: http://fruitdev.tistory.com/145 [과일가게 개발자]
'JSP > javascript jQuery' 카테고리의 다른 글
[jQuery] AJAX 사용 방법 (0) | 2019.10.28 |
---|---|
[jQuery] Checkbox 제어, 사용법 (0) | 2018.10.23 |
[JSP] 페이지 로드 스크립트 순서 (0) | 2018.08.26 |
[jQuery] 동적으로 table(html tag) 추가/삭제 및 유효성 체크 (0) | 2018.08.07 |
[jQuery] checkbox 컨트롤 (0) | 2018.07.13 |