이메일 체크

//(알파벳 + 숫자 + _ + . )@

function regEmailType(data) {

var regex = /([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;

return regex.test(data);

}


핸드폰 체크

// 3자리 + 3,4자리 + 4자리

function regPhoneType(data) {

var regex = /^\d{3}-\d{3,4}-\d{4}$/;

return regex.test(data);

}

+ Recent posts