휴대폰번호 검사 하기 입니다.

· 10년 전 · 771

<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);'  >
 

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
9년 전 조회 736
9년 전 조회 843
9년 전 조회 747
9년 전 조회 824
9년 전 조회 930
9년 전 조회 711
9년 전 조회 763
9년 전 조회 773
9년 전 조회 903
9년 전 조회 746
9년 전 조회 870
9년 전 조회 669
9년 전 조회 758
9년 전 조회 598
9년 전 조회 804
9년 전 조회 692
9년 전 조회 716
9년 전 조회 782
9년 전 조회 721
9년 전 조회 732
9년 전 조회 705
9년 전 조회 1,081
9년 전 조회 1,109
9년 전 조회 1,094
9년 전 조회 1,042
9년 전 조회 838
9년 전 조회 993
9년 전 조회 1,123
9년 전 조회 807
10년 전 조회 1,109
10년 전 조회 1,077
10년 전 조회 1,478
10년 전 조회 1,094
10년 전 조회 1,281
10년 전 조회 917
10년 전 조회 1,077
10년 전 조회 791
10년 전 조회 823
10년 전 조회 931
10년 전 조회 902
10년 전 조회 1,058
10년 전 조회 805
10년 전 조회 857
10년 전 조회 831
10년 전 조회 755
10년 전 조회 850
10년 전 조회 701
10년 전 조회 757
10년 전 조회 680
10년 전 조회 772
10년 전 조회 754
10년 전 조회 1,197
10년 전 조회 728
10년 전 조회 671
10년 전 조회 924
10년 전 조회 742
10년 전 조회 708
10년 전 조회 720
10년 전 조회 677
10년 전 조회 615
10년 전 조회 598
10년 전 조회 673
10년 전 조회 680
10년 전 조회 638
10년 전 조회 581
10년 전 조회 672
10년 전 조회 658
10년 전 조회 647
10년 전 조회 714
10년 전 조회 714
10년 전 조회 607
10년 전 조회 652
10년 전 조회 722
10년 전 조회 655
10년 전 조회 752
10년 전 조회 683
10년 전 조회 627
10년 전 조회 606
10년 전 조회 636
10년 전 조회 602
10년 전 조회 621
10년 전 조회 653
10년 전 조회 599
10년 전 조회 648
10년 전 조회 613
10년 전 조회 703
10년 전 조회 816
10년 전 조회 753
10년 전 조회 738
10년 전 조회 633
10년 전 조회 746
10년 전 조회 645
10년 전 조회 680
10년 전 조회 641
10년 전 조회 619
10년 전 조회 599
10년 전 조회 637
10년 전 조회 714
10년 전 조회 661
10년 전 조회 764