휴대폰번호 검사

· 17년 전 · 1922

<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,238
16년 전 조회 2,264
16년 전 조회 4,034
16년 전 조회 1,792
16년 전 조회 2,086
17년 전 조회 2,448
17년 전 조회 2,949
17년 전 조회 2,649
17년 전 조회 3,089
17년 전 조회 3,333
17년 전 조회 3,359
17년 전 조회 2,158
17년 전 조회 1,877
17년 전 조회 1,744
17년 전 조회 2,062
17년 전 조회 1,544
17년 전 조회 2,300
17년 전 조회 2,080
17년 전 조회 1,926
17년 전 조회 1,637
17년 전 조회 2,504
17년 전 조회 3,570
17년 전 조회 2,465
17년 전 조회 2,074
17년 전 조회 1,846
17년 전 조회 2,375
17년 전 조회 5,060
17년 전 조회 1,756
17년 전 조회 2,500
17년 전 조회 2,469
17년 전 조회 2,745
17년 전 조회 2,463
17년 전 조회 4,785
17년 전 조회 3,293
17년 전 조회 3,194
17년 전 조회 1,913
17년 전 조회 1,575
17년 전 조회 4,300
17년 전 조회 1,979
17년 전 조회 1,972
17년 전 조회 2,459
17년 전 조회 2,208
17년 전 조회 1,852
17년 전 조회 4,272
17년 전 조회 2,087
17년 전 조회 3,440
17년 전 조회 3,363
17년 전 조회 1,353
17년 전 조회 2,158
17년 전 조회 1,922
17년 전 조회 2,179
17년 전 조회 2,971
17년 전 조회 3,338
17년 전 조회 3,543
17년 전 조회 3,656
17년 전 조회 1,757
17년 전 조회 1,753
17년 전 조회 2,562
17년 전 조회 2,309
17년 전 조회 2,593
17년 전 조회 3,146
17년 전 조회 3,605
17년 전 조회 2,690
17년 전 조회 1,962
17년 전 조회 3,543
17년 전 조회 3,405
17년 전 조회 3,364
17년 전 조회 4,248
17년 전 조회 2,888
17년 전 조회 2,737
17년 전 조회 2,998
17년 전 조회 3,229
17년 전 조회 2,945
17년 전 조회 1,798
17년 전 조회 2,198
17년 전 조회 1,835
17년 전 조회 2,258
17년 전 조회 2,864
17년 전 조회 9,030
17년 전 조회 3,479
17년 전 조회 4,536
17년 전 조회 2,305
17년 전 조회 3,976
17년 전 조회 1,865
17년 전 조회 1,708
17년 전 조회 2,632
17년 전 조회 1,623
17년 전 조회 1,932
17년 전 조회 1,789
17년 전 조회 2,854
17년 전 조회 1,816
17년 전 조회 1,387
17년 전 조회 1,551
17년 전 조회 3,432
17년 전 조회 2,466
17년 전 조회 2,268
17년 전 조회 1,525
17년 전 조회 2,746
17년 전 조회 1,485
17년 전 조회 1,441