휴대폰번호 검사

· 17년 전 · 1752

<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,045
16년 전 조회 2,065
16년 전 조회 3,846
16년 전 조회 1,602
16년 전 조회 1,889
16년 전 조회 2,247
16년 전 조회 2,779
16년 전 조회 2,466
16년 전 조회 2,907
16년 전 조회 3,149
16년 전 조회 3,162
16년 전 조회 1,969
16년 전 조회 1,682
17년 전 조회 1,543
17년 전 조회 1,871
17년 전 조회 1,357
17년 전 조회 2,109
17년 전 조회 1,882
17년 전 조회 1,747
17년 전 조회 1,436
17년 전 조회 2,332
17년 전 조회 3,386
17년 전 조회 2,298
17년 전 조회 1,889
17년 전 조회 1,670
17년 전 조회 2,199
17년 전 조회 4,868
17년 전 조회 1,602
17년 전 조회 2,332
17년 전 조회 2,309
17년 전 조회 2,586
17년 전 조회 2,283
17년 전 조회 4,619
17년 전 조회 3,111
17년 전 조회 3,021
17년 전 조회 1,742
17년 전 조회 1,383
17년 전 조회 4,126
17년 전 조회 1,804
17년 전 조회 1,786
17년 전 조회 2,271
17년 전 조회 2,029
17년 전 조회 1,676
17년 전 조회 4,094
17년 전 조회 1,908
17년 전 조회 3,269
17년 전 조회 3,178
17년 전 조회 1,166
17년 전 조회 2,010
17년 전 조회 1,753
17년 전 조회 1,996
17년 전 조회 2,816
17년 전 조회 3,179
17년 전 조회 3,390
17년 전 조회 3,486
17년 전 조회 1,596
17년 전 조회 1,577
17년 전 조회 2,390
17년 전 조회 2,136
17년 전 조회 2,428
17년 전 조회 2,967
17년 전 조회 3,446
17년 전 조회 2,537
17년 전 조회 1,796
17년 전 조회 3,380
17년 전 조회 3,235
17년 전 조회 3,210
17년 전 조회 4,078
17년 전 조회 2,725
17년 전 조회 2,568
17년 전 조회 2,828
17년 전 조회 3,068
17년 전 조회 2,784
17년 전 조회 1,617
17년 전 조회 2,024
17년 전 조회 1,625
17년 전 조회 2,076
17년 전 조회 2,685
17년 전 조회 8,853
17년 전 조회 3,310
17년 전 조회 4,372
17년 전 조회 2,139
17년 전 조회 3,803
17년 전 조회 1,714
17년 전 조회 1,528
17년 전 조회 2,457
17년 전 조회 1,465
17년 전 조회 1,767
17년 전 조회 1,610
17년 전 조회 2,688
17년 전 조회 1,645
17년 전 조회 1,236
17년 전 조회 1,375
17년 전 조회 3,265
17년 전 조회 2,304
17년 전 조회 2,108
17년 전 조회 1,366
17년 전 조회 2,590
17년 전 조회 1,316
17년 전 조회 1,272