p

자바스크립트 이메일 체크 함수

function _check_email(email) {
var pattern = /^(.+)@(.+)$/;
var atom = "\[^\\s\\(\\)<>#@,;:!\\\\\\\"\\.\\[\\]\]+";
var word="(" + atom + "|(\"[^\"]*\"))";
var user_pattern = new RegExp("^" + word + "(\\." + word + ")*$");
var ip_pattern = /^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
var domain_pattern = new RegExp("^" + atom + "(\\." + atom +")*$");

var arr = email.match(pattern);
if (!arr) return "Email address seems incorrect (check @ and .'s)";
if (!arr[1].match(user_pattern)) return "The username doesn't seem to be valid.";

var ip = arr[2].match(ip_pattern);
if (ip) {
for (var i=1; i<5; i++) if (ip[i] > 255) return "Destination IP address is invalid!";
}
else {
if (!arr[2].match(domain_pattern)) return "The domain name doesn't seem to be valid.";
var domain = arr[2].match(new RegExp(atom,"g"));
if (domain.length<2) return "This address is missing a hostname!";
if (domain[domain.length-1].length<2 || domain[domain.length-1].length>3)
return "The address must end in a three-letter domain, or two letter country.";
}
return false;
}<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
19년 전 조회 2,113
19년 전 조회 2,267
19년 전 조회 1,821
19년 전 조회 2,514
19년 전 조회 2,151
19년 전 조회 1,762
19년 전 조회 1,953
19년 전 조회 2,206
19년 전 조회 1,972
19년 전 조회 1,756
19년 전 조회 1,817
19년 전 조회 3,313
19년 전 조회 2,171
19년 전 조회 2,027
19년 전 조회 4,524
19년 전 조회 5,151
19년 전 조회 3,326
19년 전 조회 3,064
19년 전 조회 3,660
19년 전 조회 2,193
19년 전 조회 2,559
19년 전 조회 2,857
19년 전 조회 2,924
19년 전 조회 2,531
19년 전 조회 1,788
19년 전 조회 3,577
19년 전 조회 2,150
19년 전 조회 2,550
19년 전 조회 2,614
19년 전 조회 3,051
19년 전 조회 5,373
19년 전 조회 2,651
19년 전 조회 3,487
19년 전 조회 4,426
19년 전 조회 2,685
19년 전 조회 2,623
19년 전 조회 4,215
19년 전 조회 2,919
19년 전 조회 3,149
19년 전 조회 2,378
19년 전 조회 2,374
19년 전 조회 2,168
19년 전 조회 3,461
19년 전 조회 2,274
19년 전 조회 2,960
19년 전 조회 1,912
19년 전 조회 5,468
19년 전 조회 3,735
19년 전 조회 4,485
19년 전 조회 3,226
19년 전 조회 2,694
19년 전 조회 4,079
19년 전 조회 2,814
19년 전 조회 3,159
19년 전 조회 3,128
19년 전 조회 4,338
19년 전 조회 3,291
19년 전 조회 3,180
19년 전 조회 3,867
19년 전 조회 3,158
19년 전 조회 2,389
19년 전 조회 2,392
19년 전 조회 2,329
19년 전 조회 2,956
19년 전 조회 2,653
19년 전 조회 3,500
19년 전 조회 3,369
19년 전 조회 1,988
19년 전 조회 2,914
19년 전 조회 7,995
19년 전 조회 2,671
19년 전 조회 3,277
19년 전 조회 3,047
19년 전 조회 3,165
19년 전 조회 2,395
19년 전 조회 2,622
19년 전 조회 4,217
19년 전 조회 2,413
19년 전 조회 4,395
19년 전 조회 2,573
19년 전 조회 2,247
19년 전 조회 2,488
19년 전 조회 2,044
19년 전 조회 2,578
19년 전 조회 2,360
19년 전 조회 3,237
19년 전 조회 2,019
19년 전 조회 3,691
19년 전 조회 2,871
19년 전 조회 3,590
19년 전 조회 3,621
19년 전 조회 3,319
19년 전 조회 5,591
19년 전 조회 2,339
19년 전 조회 2,382
19년 전 조회 2,486
19년 전 조회 3,558
19년 전 조회 3,877
19년 전 조회 3,899
19년 전 조회 2,517