-
자바스크립트 input 빈 값 체크하기Web Programming 2023. 2. 10. 22:51728x90반응형
// 폼 input text 빈값 체크 var isRight = true; $("#allForm").find("input[type=text]").each(function(index, item){ // id 가 result 로 시작하는 것 제외추가 if($(this).attr('id') != $("[id^='result']")){ if ($(this).val().trim() == '') { // input 중에 빈 값 체크가 필요없을때 if($(this).attr('id') == 'picTel'){ isRight = true; }else{ alert($(this).attr("title")+" 항목을 입력하세요."); $(this).focus(); isRight = false; return false; } } } }); if (!isRight) { return; }
allForm 안에 type 이 input 인 것 중에 id 가 result 로 시작하는 것 제외추가 제외하고 input 중에 빈 값 체크가 필요없는 id가 picTel 인 것은 체크 제외 !!
728x90반응형'Web Programming' 카테고리의 다른 글
이클립스 단축키 모음 (0) 2023.02.10 자바스크립트 사업자등록번호 조회하기 ajax done (0) 2023.02.10 자바스크립트 자식 또는 하위 찾기 children (0) 2023.02.10 자바스크립트 innerHTML (0) 2023.02.10 자바스크립트 자료형 조사 === (0) 2023.02.10