프로그래밍/스크립트

이메일 도메인 체크 정규식 함수

Doonee 2013. 8. 22. 11:14
반응형

function CheckEmailDomain(){

var regExp = /[0-9a-zA-Z]([-_\.]?[0-9a-zA-Z])*\.[a-zA-Z]{2,3}$/i;


IF(!regExp.test(document.frmApply.EmailDomain.value)){

         document.frmApply.EmailDomain.value="";

         document.frmApply.EmailDomain.focus();

         alert("이메일 도메인형식이 올바르지 않습니다.");

         return false;

}

}