validation 썸네일형 리스트형 [jQuery] file폼 확장자 체크하기. if( $("#file").val() != "" ){var ext = $('#file').val().split('.').pop().toLowerCase(); if($.inArray(ext, ['gif','png','jpg','jpeg']) == -1) { alert('gif,png,jpg,jpeg 파일만 업로드 할수 있습니다.'); return; }} #file은 파일 id 출처 : http://stackoverflow.com/questions/651700/how-to-have-jquery-restrict-file-types-on-upload 더보기 [jQuery/javascript] email 유효성 체크 (validation check) function emailCheck(email_address){ email_regex = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i; if(!email_regex.test(email_address)){ return false; }else{ return true; } } email_address를 파라미터로 넘겨주면 이메일형식이 맞을경우 true, 아닐경우 false를 리턴한다. 더보기 이전 1 다음