위토즈 - 개발자프로그램판매공간

정보공유

[JQUERY] 설문응답 유효성 검사


<li>

    <p>2. 어떻게 알고 들어오셨나요?</p>

    <p>

        <input type="hidden" name="sat_sort[]" value="1" />

        <input type="hidden" name="sd_id[1]" value="1" />

        <label><input type="radio" name="sat_answer[1]" value="지인" class="btn-select"/> 지인</label>

        <label><input type="radio" name="sat_answer[1]" value="인터넷검색" class="btn-select"/> 인터넷검색</label>

        <label><input type="radio" name="sat_answer[1]" value="초청" class="btn-select"/> 초청</label>

    </p>

</li>

<li>

    <p>3. 기타입력이 있는 질문입니다.</p>

    <p>

        <input type="hidden" name="sat_sort[]" value="3" />

        <input type="hidden" name="sd_id[3]" value="19" />

        <label><input type="radio" name="sat_answer[3]" value="예" class="btn-select"/> 예</label>

        <label><input type="radio" name="sat_answer[3]" value="아니오" class="btn-select"/> 아니오</label>

    </p>

</li>






var i = 1;

var is_vaild = true;

$("input[name='sat_sort[]']").each(

    function(){

        var no = $(this).val();

        var is_checked = false;

        var answer = $("input[name='sat_answer["+no+"]']");

        if (answer.length) {

            $(answer).each(

                function(){

                    if (this.checked) {

                        is_checked = true;

                    }

                }

            );

        }


        if (!is_checked) {

            alert(i+'번 설문에 응답해주세요.');

            is_vaild = false;

            return false;

        }

        i++;

    }

);


if (is_vaild == true) {

    return true;

}

else {

    return false;

}


정보공유
Total 470건 6 페이지
번호 제목 글쓴이 날짜 조회
395 [2021 최신 CSS 4] Flex Box Gap 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 15,519
394 [2021 최신 CSS 3] 브라우저 지원여부 확인 @supports 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 15,368
393 [2021 최신 CSS 2] 1줄로 정리 :is 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 15,154
392 [2021 최신 CSS 1] 앱처럼 스크롤을 적용하자 scroll-snap 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 16,043
391 문자 내용이 euc-kr 인지 체크 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-01 17,553
390 데이터 검증 후 잘못된 처리일경우 롤백처리. (트랜젝션) 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-07 16,660
389 영카트 배송비까지 비과세 적용하기 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-23 17,577
388 웹페이지 인쇄할때 하단에 주소 안나오도록 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-22 16,160
387 주소복사 계좌번호복사 URL복사 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-11 19,718
386 mysql 생년월일로 나이 계산식 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-11 24,968
385 목록화면 기본 코드 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-04 17,749
384 웹페이지 인쇄할때 페이지 구분하는 style 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-20 16,817
383 jquery 스와이프 메뉴 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-15 22,246
382 F12 키코드 막기 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-14 17,373
381 중복키관리 ON DUPLICATE KEY UPDATE 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-13 17,361