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;
    }
}



블로그 이미지

Link2Me

,