휴대폰번호 검사

· 17년 전 · 1605

<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,881
16년 전 조회 1,929
16년 전 조회 3,694
16년 전 조회 1,477
16년 전 조회 1,767
16년 전 조회 2,080
16년 전 조회 2,622
16년 전 조회 2,317
16년 전 조회 2,762
16년 전 조회 3,005
16년 전 조회 3,022
16년 전 조회 1,829
16년 전 조회 1,553
16년 전 조회 1,424
16년 전 조회 1,738
16년 전 조회 1,217
16년 전 조회 1,975
16년 전 조회 1,749
16년 전 조회 1,621
17년 전 조회 1,309
17년 전 조회 2,181
17년 전 조회 3,240
17년 전 조회 2,174
17년 전 조회 1,756
17년 전 조회 1,521
17년 전 조회 2,055
17년 전 조회 4,742
17년 전 조회 1,428
17년 전 조회 2,162
17년 전 조회 2,141
17년 전 조회 2,413
17년 전 조회 2,162
17년 전 조회 4,446
17년 전 조회 2,946
17년 전 조회 2,881
17년 전 조회 1,613
17년 전 조회 1,254
17년 전 조회 3,959
17년 전 조회 1,631
17년 전 조회 1,622
17년 전 조회 2,126
17년 전 조회 1,897
17년 전 조회 1,511
17년 전 조회 3,930
17년 전 조회 1,768
17년 전 조회 3,141
17년 전 조회 3,018
17년 전 조회 1,050
17년 전 조회 1,862
17년 전 조회 1,606
17년 전 조회 1,862
17년 전 조회 2,653
17년 전 조회 3,036
17년 전 조회 3,231
17년 전 조회 3,340
17년 전 조회 1,474
17년 전 조회 1,429
17년 전 조회 2,266
17년 전 조회 1,989
17년 전 조회 2,303
17년 전 조회 2,829
17년 전 조회 3,277
17년 전 조회 2,374
17년 전 조회 1,647
17년 전 조회 3,219
17년 전 조회 3,082
17년 전 조회 3,058
17년 전 조회 3,926
17년 전 조회 2,601
17년 전 조회 2,422
17년 전 조회 2,671
17년 전 조회 2,909
17년 전 조회 2,625
17년 전 조회 1,468
17년 전 조회 1,912
17년 전 조회 1,503
17년 전 조회 1,925
17년 전 조회 2,524
17년 전 조회 8,706
17년 전 조회 3,168
17년 전 조회 4,259
17년 전 조회 1,995
17년 전 조회 3,673
17년 전 조회 1,570
17년 전 조회 1,400
17년 전 조회 2,338
17년 전 조회 1,328
17년 전 조회 1,647
17년 전 조회 1,478
17년 전 조회 2,546
17년 전 조회 1,513
17년 전 조회 1,105
17년 전 조회 1,236
17년 전 조회 3,115
17년 전 조회 2,177
17년 전 조회 1,984
17년 전 조회 1,229
17년 전 조회 2,458
17년 전 조회 1,183
17년 전 조회 1,139