휴대폰번호 검사

· 17년 전 · 1753

<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년 전 조회 6,046
16년 전 조회 2,066
16년 전 조회 3,847
16년 전 조회 1,603
16년 전 조회 1,889
16년 전 조회 2,248
16년 전 조회 2,782
16년 전 조회 2,467
16년 전 조회 2,907
16년 전 조회 3,149
16년 전 조회 3,162
16년 전 조회 1,969
16년 전 조회 1,682
17년 전 조회 1,545
17년 전 조회 1,873
17년 전 조회 1,361
17년 전 조회 2,110
17년 전 조회 1,883
17년 전 조회 1,748
17년 전 조회 1,437
17년 전 조회 2,332
17년 전 조회 3,386
17년 전 조회 2,298
17년 전 조회 1,889
17년 전 조회 1,670
17년 전 조회 2,199
17년 전 조회 4,869
17년 전 조회 1,602
17년 전 조회 2,334
17년 전 조회 2,309
17년 전 조회 2,589
17년 전 조회 2,287
17년 전 조회 4,620
17년 전 조회 3,113
17년 전 조회 3,021
17년 전 조회 1,742
17년 전 조회 1,383
17년 전 조회 4,126
17년 전 조회 1,804
17년 전 조회 1,788
17년 전 조회 2,272
17년 전 조회 2,029
17년 전 조회 1,679
17년 전 조회 4,094
17년 전 조회 1,908
17년 전 조회 3,270
17년 전 조회 3,178
17년 전 조회 1,166
17년 전 조회 2,010
17년 전 조회 1,754
17년 전 조회 1,997
17년 전 조회 2,816
17년 전 조회 3,180
17년 전 조회 3,392
17년 전 조회 3,487
17년 전 조회 1,596
17년 전 조회 1,577
17년 전 조회 2,392
17년 전 조회 2,136
17년 전 조회 2,429
17년 전 조회 2,967
17년 전 조회 3,446
17년 전 조회 2,537
17년 전 조회 1,800
17년 전 조회 3,380
17년 전 조회 3,235
17년 전 조회 3,211
17년 전 조회 4,080
17년 전 조회 2,725
17년 전 조회 2,569
17년 전 조회 2,831
17년 전 조회 3,070
17년 전 조회 2,785
17년 전 조회 1,617
17년 전 조회 2,024
17년 전 조회 1,625
17년 전 조회 2,077
17년 전 조회 2,687
17년 전 조회 8,853
17년 전 조회 3,310
17년 전 조회 4,372
17년 전 조회 2,140
17년 전 조회 3,808
17년 전 조회 1,715
17년 전 조회 1,528
17년 전 조회 2,458
17년 전 조회 1,467
17년 전 조회 1,769
17년 전 조회 1,611
17년 전 조회 2,689
17년 전 조회 1,646
17년 전 조회 1,237
17년 전 조회 1,376
17년 전 조회 3,266
17년 전 조회 2,305
17년 전 조회 2,108
17년 전 조회 1,366
17년 전 조회 2,590
17년 전 조회 1,317
17년 전 조회 1,272