휴대폰번호 검사

· 17년 전 · 1901

<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,215
16년 전 조회 2,236
16년 전 조회 4,011
16년 전 조회 1,770
16년 전 조회 2,058
16년 전 조회 2,416
17년 전 조회 2,928
17년 전 조회 2,634
17년 전 조회 3,070
17년 전 조회 3,310
17년 전 조회 3,335
17년 전 조회 2,124
17년 전 조회 1,854
17년 전 조회 1,723
17년 전 조회 2,043
17년 전 조회 1,520
17년 전 조회 2,281
17년 전 조회 2,057
17년 전 조회 1,907
17년 전 조회 1,612
17년 전 조회 2,479
17년 전 조회 3,546
17년 전 조회 2,445
17년 전 조회 2,045
17년 전 조회 1,828
17년 전 조회 2,351
17년 전 조회 5,032
17년 전 조회 1,741
17년 전 조회 2,486
17년 전 조회 2,445
17년 전 조회 2,728
17년 전 조회 2,448
17년 전 조회 4,767
17년 전 조회 3,263
17년 전 조회 3,176
17년 전 조회 1,887
17년 전 조회 1,546
17년 전 조회 4,275
17년 전 조회 1,947
17년 전 조회 1,947
17년 전 조회 2,432
17년 전 조회 2,189
17년 전 조회 1,827
17년 전 조회 4,245
17년 전 조회 2,066
17년 전 조회 3,419
17년 전 조회 3,336
17년 전 조회 1,335
17년 전 조회 2,146
17년 전 조회 1,901
17년 전 조회 2,163
17년 전 조회 2,951
17년 전 조회 3,320
17년 전 조회 3,523
17년 전 조회 3,638
17년 전 조회 1,741
17년 전 조회 1,733
17년 전 조회 2,538
17년 전 조회 2,280
17년 전 조회 2,570
17년 전 조회 3,130
17년 전 조회 3,590
17년 전 조회 2,666
17년 전 조회 1,936
17년 전 조회 3,521
17년 전 조회 3,373
17년 전 조회 3,335
17년 전 조회 4,220
17년 전 조회 2,858
17년 전 조회 2,718
17년 전 조회 2,974
17년 전 조회 3,214
17년 전 조회 2,921
17년 전 조회 1,775
17년 전 조회 2,170
17년 전 조회 1,766
17년 전 조회 2,230
17년 전 조회 2,847
17년 전 조회 9,004
17년 전 조회 3,450
17년 전 조회 4,508
17년 전 조회 2,277
17년 전 조회 3,947
17년 전 조회 1,845
17년 전 조회 1,671
17년 전 조회 2,609
17년 전 조회 1,593
17년 전 조회 1,909
17년 전 조회 1,761
17년 전 조회 2,832
17년 전 조회 1,785
17년 전 조회 1,376
17년 전 조회 1,526
17년 전 조회 3,423
17년 전 조회 2,446
17년 전 조회 2,245
17년 전 조회 1,504
17년 전 조회 2,728
17년 전 조회 1,456
17년 전 조회 1,426