웹언어/JavaScript
[JS] 이메일 유효성 검사
//test() 함수를 이용한 문자열 비교 var 변수명 = /^([0-9a-zA-Z_\.-]+)@([0-9a-zA-Z_-]+)(\.[0-9a-zA-Z_-]+){1,2}$/; if(변수명.test(검사할 문자)){ 조건에 만족하면 true; }else{ 조건에 만족하지 못하면 false; } See the Pen email_check by 윤재현 (@jh91) on CodePen.
2021. 3. 16. 13:48