1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
function EmailCheck(){ var check2 = /^[a-zA-Z0-9\-\.\_]+\@[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,6})$/; if (document.Input.txtemail.value ==""){ alert("글 작성시 Email을 입력해 주십시오."); document.Input.email.focus; return 0; } if ( check2.test(document.Input.txtemail.value)) { } else { alert("E-메일이 형식에 맞지 않습니다.\n\n 확인바랍니다."); document.Input.email.focus; return 0; } } |