본문 바로가기

개발/jsp

예 아니오

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();
   }  

'개발 > jsp' 카테고리의 다른 글

Util.ko  (0) 2020.02.05
합이 잘못됐습니다.  (0) 2020.02.05
순위선택  (0) 2020.02.05
파라메타 확인  (0) 2020.02.05
다중선택 + 블라인드처리  (0) 2020.02.05