휴대폰번호 검사

· 17년 전 · 1867

<SCRIPT LANGUAGE="JavaScript">
<!--
function maskHp(obj) {
    var str = obj.value;
    if ( str ) {
        //var pattern = /[^(ㄱ-힣)]|[-/\s]/g;
        var RegNotNum  = /[\D]/g;
        var pattern = "";
        var format   = "";

        // delete not number ㅋ
        str = str.replace(RegNotNum,'');

        //if( str.length < 4 ) return str;
        if( str.length < 4 ) {
            if( str.length == 3 ) {
                format = "$1";
                pattern = /(^01[\d]{0,1})/;
            } else {
                format = "$1";
                pattern = /(^0[1]?[\d]{0,1})/;
            }
        } else if( str.length > 3 && str.length < 7 ) {
            format = "$1-$2";
            pattern = /(^01[\d]{1})([\d]+)/;
        } else if(str.length == 7 ) {
            format = "$1-$2";
            pattern = /(^01[\d]{1})([\d]{4})/;
        } else {
            format = "$1-$2-$3";
            pattern = /(^01[\d]{1})([\d]{4})([\d]+)/;
        }

        //while( pattern.test(str) ) {
        if ( pattern.test(str) ) {
            obj.value = str.replace(pattern, format);
        } else {
            obj.value = "";
        }
    }
}


function isHpFormat() {
  var str = window.event.srcElement.value;
  //alert ( str );
  if ( window.event.propertyName == "value" && str ) {
        var pattern = "";
        str = str.replace(/[\D]/g,'');
        if( str.length < 4 ) {
            if( str.length == 3 ) pattern = /(^01[\d]{1})/;
            else                  pattern = /(^0[1]?[\d]{0,1})/;
        } else if( str.length > 3 && str.length < 7 ) {
            pattern = /(^01[\d]{1})([\d]+)$/;
        } else if(str.length == 7 ) {
            pattern = /(^01[\d]{1})([\d]{4})/;
        } else {
            pattern = /(^01[\d]{1})([\d]{4})([\d]+)/;
        }
        if ( pattern.test(str) ) {
            return true;
        } else {
            return false;
        }
  } else {
        return true;
      // undefined
  }
}

//-->
</SCRIPT>
<input type='text' id='phon_num' value=''
size='14' maxlength='13'
onpropertychange='if(!isHpFormat()){alert("핸드폰 번호가 정확히 입력해주세요.");this.value="";}'
onkeyup ='maskHp(this);'
onkeydown='maskHp(this);'  >


 

[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
16년 전 조회 6,187
16년 전 조회 2,190
16년 전 조회 3,973
16년 전 조회 1,728
16년 전 조회 2,016
16년 전 조회 2,372
16년 전 조회 2,894
16년 전 조회 2,601
17년 전 조회 3,028
17년 전 조회 3,269
17년 전 조회 3,284
17년 전 조회 2,089
17년 전 조회 1,814
17년 전 조회 1,681
17년 전 조회 2,007
17년 전 조회 1,495
17년 전 조회 2,241
17년 전 조회 2,014
17년 전 조회 1,872
17년 전 조회 1,570
17년 전 조회 2,444
17년 전 조회 3,516
17년 전 조회 2,413
17년 전 조회 2,011
17년 전 조회 1,795
17년 전 조회 2,314
17년 전 조회 4,996
17년 전 조회 1,716
17년 전 조회 2,451
17년 전 조회 2,416
17년 전 조회 2,686
17년 전 조회 2,410
17년 전 조회 4,730
17년 전 조회 3,222
17년 전 조회 3,137
17년 전 조회 1,853
17년 전 조회 1,515
17년 전 조회 4,241
17년 전 조회 1,912
17년 전 조회 1,910
17년 전 조회 2,394
17년 전 조회 2,162
17년 전 조회 1,796
17년 전 조회 4,212
17년 전 조회 2,039
17년 전 조회 3,381
17년 전 조회 3,304
17년 전 조회 1,296
17년 전 조회 2,113
17년 전 조회 1,868
17년 전 조회 2,123
17년 전 조회 2,931
17년 전 조회 3,289
17년 전 조회 3,492
17년 전 조회 3,609
17년 전 조회 1,703
17년 전 조회 1,698
17년 전 조회 2,507
17년 전 조회 2,255
17년 전 조회 2,543
17년 전 조회 3,086
17년 전 조회 3,568
17년 전 조회 2,641
17년 전 조회 1,915
17년 전 조회 3,499
17년 전 조회 3,342
17년 전 조회 3,312
17년 전 조회 4,194
17년 전 조회 2,831
17년 전 조회 2,696
17년 전 조회 2,944
17년 전 조회 3,183
17년 전 조회 2,895
17년 전 조회 1,736
17년 전 조회 2,143
17년 전 조회 1,737
17년 전 조회 2,198
17년 전 조회 2,820
17년 전 조회 8,978
17년 전 조회 3,421
17년 전 조회 4,490
17년 전 조회 2,251
17년 전 조회 3,923
17년 전 조회 1,817
17년 전 조회 1,643
17년 전 조회 2,577
17년 전 조회 1,570
17년 전 조회 1,878
17년 전 조회 1,732
17년 전 조회 2,801
17년 전 조회 1,754
17년 전 조회 1,344
17년 전 조회 1,496
17년 전 조회 3,390
17년 전 조회 2,424
17년 전 조회 2,215
17년 전 조회 1,474
17년 전 조회 2,697
17년 전 조회 1,428
17년 전 조회 1,393