728x90
반응형
질문 : jQuery로 라디오 버튼을 확인하는 방법은 무엇입니까?
jQuery로 라디오 버튼을 확인하려고합니다. 내 코드는 다음과 같습니다.
<form>
<div id='type'>
<input type='radio' id='radio_1' name='type' value='1' />
<input type='radio' id='radio_2' name='type' value='2' />
<input type='radio' id='radio_3' name='type' value='3' />
</div>
</form>
그리고 자바 스크립트 :
jQuery("#radio_1").attr('checked', true);
작동하지 않음 :
jQuery("input[value='1']").attr('checked', true);
작동하지 않음 :
jQuery('input:radio[name="type"]').filter('[value="1"]').attr('checked', true);
작동하지 않음 :
다른 아이디어가 있습니까? 내가 무엇을 놓치고 있습니까?
답변
jQuery 1.6 이상 (> =) 버전의 경우 다음을 사용하십시오.
$("#radio_1").prop("checked", true);
(<) 1.6 이전 버전의 경우 다음을 사용하십시오.
$("#radio_1").attr('checked', 'checked');
팁 : 나중에 라디오 버튼에서 click()
또는 change()
를 호출 할 수도 있습니다. 자세한 내용은 주석을 참조하십시오.
출처 : https://stackoverflow.com/questions/5665915/how-to-check-a-radio-button-with-jquery
728x90
반응형
'프로그래밍 언어 > jQuery, ajax' 카테고리의 다른 글
jQuery에서 이벤트 핸들러를 제거하는 가장 좋은 방법 (0) | 2021.10.13 |
---|---|
jQuery로 엔터키를 통해 Form을 제출하는 방법 (0) | 2021.10.13 |
jQuery.click () vs onClick (0) | 2021.10.12 |
jQuery를 사용하여 Ajax 요청 중단 하는 방법 (0) | 2021.10.12 |
jQuery UI 대화 상자에서 닫기 버튼을 제거하는 방법 (0) | 2021.10.07 |