jquery - form validation check
마스터욱
0
16
0
0
2017-05-22 14:59:58
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | var form_pass = true; $.each($("input, select ,textarea", "#"+fname),function(){ var rText = $(this).attr("requiredText"); if(rText){ var name = $(this).attr("name"); var value = $(this).val(); //console.log(name + " = " + value); if(!value){ alert(rText); $(this).focus(); form_pass = false; return false; } } }); |
내가 만든 소스이긴 한데, 그리 어렵지 않고 사용법도 매우 간단한다.
input, select, textarea 에 한해서 폼안의 모든 요소들의 빈값들을 체크한다.