2017년 11월 8일 수요일

jQuery radio 제어하기

jQuery radio 제어하기

라디오 선택하기

$('#conditionSetting input:radio[name="tcpScopeCode"][value="PST001002"]').prop('checked', true);

라디오 체크 안된 것 disabled 처리

$('#conditionSetting input:radio[name="tcpScopeCode"]:not(:checked)').prop("disabled",true);

라디오 전체 선택 해제하기

$('input:checkbox[name="aaa"]').prop("checked",false);