묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
라디오 버튼 체크 선택에 관해서 질문드립니다.
2002.08.16 04:16
텍스트 박스 같은경우는
if(!document.write.daller.value) {alert("아바타이미지의 가격을 기재 하세요."); write.daller.focus(); return false;}
하면 되는거 알겠는데요...
라디오 버튼일때는 어떻게 해야 하나요?
if(!document.write.daller.value) {alert("아바타이미지의 가격을 기재 하세요."); write.daller.focus(); return false;}
하면 되는거 알겠는데요...
라디오 버튼일때는 어떻게 해야 하나요?
<input type=radio name=agree value='1'>
agree 라는 라디오 버튼이 여러개...
첫번째가.. agree[0] 가 되죠..
function aaa(){
if(document.write.agree[0].checked == ""){
alert("체크하세요..~!!");
return false;
}
}