검색결과 리스트
phone에 해당되는 글 1건
- 2012.08.16 Javascript 일반전화, 휴대폰, 이메일 Validation
글
//phone validation
String.prototype.isPhoneNo1 = function() {
return eval("(/(02|0[3-9]{1}[0-9]{1})$/).test(this)");
}
String.prototype.isPhoneNo2 = function() {
return eval("(/[1-9]{1}[0-9]{2,3}$/).test(this)");
}
String.prototype.isPhoneNo3 = function() {
return eval("(/[0-9]{4}$/).test(this)");
}
// mobile validation
String.prototype.isMobileNo1 = function() {
return eval("(/01[016789]$/).test(this)");
}
String.prototype.isMobileNo2 = function() {
return eval("(/[1-9]{1}[0-9]{2,3}$/).test(this)");
}
String.prototype.isMobileNo3 = function() {
return eval("(/[0-9]{4}$/).test(this)");
}
// email validation
String.prototype.isEmail1 = function() {
return (/\w+([-+.]\w+)*$/).test(this.trim());
}
String.prototype.isEmail2 = function() {
return (/\w+([-.]\w+)*\.[a-zA-Z]{2,4}$/).test(this.trim());
}
'-- JavaScript' 카테고리의 다른 글
이메일주소 쿠키에 저장하고 불러오기 (0) | 2012.08.28 |
---|---|
Google Maps API & Marker Clusterer (0) | 2012.08.21 |
[CrossBrowser] TextBox에 숫자만 입력허용 (0) | 2012.08.10 |
[CrossBrowser] Copy & Paste 방지 (0) | 2012.06.21 |
[CrossBrowser] 팝업 닫기 (0) | 2012.06.21 |
RECENT COMMENT