제목 : 주요 자바스크립트 활용 코드 : 메일주소 검사
글번호:
|
|
203
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2004/07/21 오후 11:56:00
|
조회수:
|
|
5653
|
//[5] 메일주소 검사
function check_mail(cg) {
emailEx1 = /[^@]+@[A-Za-z0-9_\-]+\.[A-Za-z]+/;
emailEx2 = /[^@]+@[A-Za-z0-9_\-]+\.[A-Za-z0-9_\-]+\.[A-Za-z]+/;
emailEx3 = /[^@]+@[A-Za-z0-9_\-]+\.[A-Za-z0-9_\-]+\.[A-Za-z0-9_\-]+\.[A-Za-z]+/;
if(emailEx1.test(cg.value)) return true;
if(emailEx2.test(cg.value)) return true;
if(emailEx3.test(cg.value)) return true;
return false;
}