프로그래밍 언어/jQuery, ajax

jQuery로 라디오 버튼을 확인하는 방법

Rateye 2021. 10. 12. 10:53
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
반응형