document.form_seminar_afternote.radio_aggrement_type1[3].checked = true;
getElementById로는 아이디값이 고유하지 않기 때문에 적용이 되지를 않고
document.폼네임.컨트롤네임[배열번호].checked = true; 로 접근해야 한다.
DB에서 불러올때는 -1 해서 [배열번호] 로 넣어줘야 한다. 0인덱스, 1인덱스
출처 자바스크립트 라디오박스 체크|작성자 루이
document.form_seminar_afternote.radio_aggrement_type1[3].checked = true;
getElementById로는 아이디값이 고유하지 않기 때문에 적용이 되지를 않고
document.폼네임.컨트롤네임[배열번호].checked = true; 로 접근해야 한다.
DB에서 불러올때는 -1 해서 [배열번호] 로 넣어줘야 한다. 0인덱스, 1인덱스
출처 자바스크립트 라디오박스 체크|작성자 루이