휴대폰번호 검사

· 17년 전 · 1649

<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에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
16년 전 조회 5,913
16년 전 조회 1,965
16년 전 조회 3,736
16년 전 조회 1,520
16년 전 조회 1,808
16년 전 조회 2,117
16년 전 조회 2,656
16년 전 조회 2,364
16년 전 조회 2,798
16년 전 조회 3,043
16년 전 조회 3,063
16년 전 조회 1,874
16년 전 조회 1,593
16년 전 조회 1,464
16년 전 조회 1,778
16년 전 조회 1,253
16년 전 조회 2,019
16년 전 조회 1,786
17년 전 조회 1,660
17년 전 조회 1,342
17년 전 조회 2,217
17년 전 조회 3,281
17년 전 조회 2,210
17년 전 조회 1,796
17년 전 조회 1,560
17년 전 조회 2,090
17년 전 조회 4,781
17년 전 조회 1,466
17년 전 조회 2,195
17년 전 조회 2,175
17년 전 조회 2,450
17년 전 조회 2,197
17년 전 조회 4,477
17년 전 조회 2,978
17년 전 조회 2,922
17년 전 조회 1,644
17년 전 조회 1,293
17년 전 조회 3,998
17년 전 조회 1,668
17년 전 조회 1,667
17년 전 조회 2,163
17년 전 조회 1,939
17년 전 조회 1,553
17년 전 조회 3,969
17년 전 조회 1,799
17년 전 조회 3,178
17년 전 조회 3,048
17년 전 조회 1,088
17년 전 조회 1,899
17년 전 조회 1,650
17년 전 조회 1,900
17년 전 조회 2,686
17년 전 조회 3,076
17년 전 조회 3,266
17년 전 조회 3,368
17년 전 조회 1,512
17년 전 조회 1,468
17년 전 조회 2,302
17년 전 조회 2,026
17년 전 조회 2,342
17년 전 조회 2,862
17년 전 조회 3,316
17년 전 조회 2,411
17년 전 조회 1,680
17년 전 조회 3,255
17년 전 조회 3,120
17년 전 조회 3,097
17년 전 조회 3,962
17년 전 조회 2,638
17년 전 조회 2,453
17년 전 조회 2,699
17년 전 조회 2,940
17년 전 조회 2,660
17년 전 조회 1,499
17년 전 조회 1,941
17년 전 조회 1,531
17년 전 조회 1,962
17년 전 조회 2,559
17년 전 조회 8,742
17년 전 조회 3,206
17년 전 조회 4,293
17년 전 조회 2,032
17년 전 조회 3,710
17년 전 조회 1,610
17년 전 조회 1,429
17년 전 조회 2,375
17년 전 조회 1,356
17년 전 조회 1,678
17년 전 조회 1,517
17년 전 조회 2,577
17년 전 조회 1,542
17년 전 조회 1,140
17년 전 조회 1,270
17년 전 조회 3,154
17년 전 조회 2,207
17년 전 조회 2,015
17년 전 조회 1,267
17년 전 조회 2,490
17년 전 조회 1,210
17년 전 조회 1,180