개발/Javascript
input or select 등 객체의 class를 이용한 필수 입력체크
꿈꾸는법사
2021. 11. 24. 19:56
반응형
/* ******************************************************** * 기타 벨리데이션 * vReq : 필수입력 체크(class) ******************************************************** */ function fnEtcValid(){ var isPass = true; $.each($(".vReq"), function(idx, obj){ if(obj.value == "" && isPass){ var vId = obj.id; var vLabel = $("label[for='" + vId + "']").text() || $("#" + vId).attr("title"); var vStr = vLabel == "" ? "" : "[ " + vLabel + " ] 항목은 "; isPass = false; alert(vStr + "필수입력 항목입니다."); obj.focus(); return false; } }); return isPass; }
반응형