개발/jsp

예 아니오

솔이홀 2020. 2. 5. 14:50

function go_Submit(){
 if(hasCheckedRadio(this.Form.z1) == false){
  alert("1. 항목을 선택해 주세요.");
  this.Form.z1[0].focus();
  return; 
 }
 if(this.Form.z1[1].checked==true) {
  this.Form.action="survey2_end.jsp";
  this.Form.submit();
 } 
 else  {
  this.Form.action="survey2.jsp";
  this.Form.submit();
   }