728x90
var email = $('#email').val();
if(email== ''){
alert('이메일주소를 입력하세요');
email.focus();
return false;
} else {
var emailRegex = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
if (!emailRegex.test(email)) {
alert('이메일 주소가 유효하지 않습니다. ex)abc@gmail.com');
email.focus();
return false;
}
}
728x90
'Web 프로그램 > 회원가입과 로그인' 카테고리의 다른 글
[PHP] Prepared Statements in MySQLi 회원가입 및 로그인 처리 (0) | 2017.11.13 |
---|---|
[PHP] member Class (0) | 2017.10.27 |
[PHP] 구글 로그인 연동 (0) | 2017.01.14 |
HTML5 index 처리 흐름도 (0) | 2016.11.07 |
[중급] 로그인 체크 함수 (0) | 2016.09.28 |