휴대폰번호 검사

· 17년 전 · 1841

<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,158
16년 전 조회 2,152
16년 전 조회 3,934
16년 전 조회 1,693
16년 전 조회 1,990
16년 전 조회 2,332
16년 전 조회 2,858
16년 전 조회 2,558
17년 전 조회 2,991
17년 전 조회 3,237
17년 전 조회 3,253
17년 전 조회 2,050
17년 전 조회 1,774
17년 전 조회 1,639
17년 전 조회 1,968
17년 전 조회 1,454
17년 전 조회 2,204
17년 전 조회 1,982
17년 전 조회 1,828
17년 전 조회 1,533
17년 전 조회 2,419
17년 전 조회 3,475
17년 전 조회 2,378
17년 전 조회 1,981
17년 전 조회 1,755
17년 전 조회 2,280
17년 전 조회 4,965
17년 전 조회 1,688
17년 전 조회 2,425
17년 전 조회 2,378
17년 전 조회 2,658
17년 전 조회 2,376
17년 전 조회 4,697
17년 전 조회 3,190
17년 전 조회 3,107
17년 전 조회 1,822
17년 전 조회 1,476
17년 전 조회 4,206
17년 전 조회 1,878
17년 전 조회 1,881
17년 전 조회 2,359
17년 전 조회 2,125
17년 전 조회 1,758
17년 전 조회 4,180
17년 전 조회 1,998
17년 전 조회 3,344
17년 전 조회 3,274
17년 전 조회 1,263
17년 전 조회 2,076
17년 전 조회 1,842
17년 전 조회 2,089
17년 전 조회 2,902
17년 전 조회 3,264
17년 전 조회 3,467
17년 전 조회 3,580
17년 전 조회 1,676
17년 전 조회 1,671
17년 전 조회 2,473
17년 전 조회 2,225
17년 전 조회 2,518
17년 전 조회 3,056
17년 전 조회 3,534
17년 전 조회 2,615
17년 전 조회 1,891
17년 전 조회 3,468
17년 전 조회 3,316
17년 전 조회 3,280
17년 전 조회 4,164
17년 전 조회 2,798
17년 전 조회 2,664
17년 전 조회 2,917
17년 전 조회 3,153
17년 전 조회 2,864
17년 전 조회 1,704
17년 전 조회 2,116
17년 전 조회 1,715
17년 전 조회 2,170
17년 전 조회 2,786
17년 전 조회 8,950
17년 전 조회 3,390
17년 전 조회 4,458
17년 전 조회 2,224
17년 전 조회 3,896
17년 전 조회 1,792
17년 전 조회 1,613
17년 전 조회 2,552
17년 전 조회 1,547
17년 전 조회 1,852
17년 전 조회 1,703
17년 전 조회 2,770
17년 전 조회 1,734
17년 전 조회 1,328
17년 전 조회 1,475
17년 전 조회 3,360
17년 전 조회 2,402
17년 전 조회 2,195
17년 전 조회 1,446
17년 전 조회 2,667
17년 전 조회 1,407
17년 전 조회 1,358