휴대폰번호 검사

· 17년 전 · 1621

<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,894
16년 전 조회 1,940
16년 전 조회 3,713
16년 전 조회 1,495
16년 전 조회 1,789
16년 전 조회 2,097
16년 전 조회 2,636
16년 전 조회 2,342
16년 전 조회 2,779
16년 전 조회 3,018
16년 전 조회 3,040
16년 전 조회 1,850
16년 전 조회 1,567
16년 전 조회 1,441
16년 전 조회 1,752
16년 전 조회 1,229
16년 전 조회 1,990
16년 전 조회 1,761
16년 전 조회 1,637
17년 전 조회 1,319
17년 전 조회 2,193
17년 전 조회 3,263
17년 전 조회 2,186
17년 전 조회 1,768
17년 전 조회 1,538
17년 전 조회 2,072
17년 전 조회 4,758
17년 전 조회 1,442
17년 전 조회 2,175
17년 전 조회 2,156
17년 전 조회 2,426
17년 전 조회 2,174
17년 전 조회 4,457
17년 전 조회 2,954
17년 전 조회 2,894
17년 전 조회 1,624
17년 전 조회 1,270
17년 전 조회 3,972
17년 전 조회 1,639
17년 전 조회 1,638
17년 전 조회 2,143
17년 전 조회 1,907
17년 전 조회 1,524
17년 전 조회 3,946
17년 전 조회 1,775
17년 전 조회 3,161
17년 전 조회 3,027
17년 전 조회 1,062
17년 전 조회 1,876
17년 전 조회 1,622
17년 전 조회 1,872
17년 전 조회 2,666
17년 전 조회 3,056
17년 전 조회 3,244
17년 전 조회 3,353
17년 전 조회 1,489
17년 전 조회 1,443
17년 전 조회 2,283
17년 전 조회 2,008
17년 전 조회 2,316
17년 전 조회 2,841
17년 전 조회 3,287
17년 전 조회 2,386
17년 전 조회 1,657
17년 전 조회 3,230
17년 전 조회 3,091
17년 전 조회 3,072
17년 전 조회 3,941
17년 전 조회 2,616
17년 전 조회 2,433
17년 전 조회 2,685
17년 전 조회 2,921
17년 전 조회 2,638
17년 전 조회 1,481
17년 전 조회 1,920
17년 전 조회 1,511
17년 전 조회 1,941
17년 전 조회 2,536
17년 전 조회 8,719
17년 전 조회 3,177
17년 전 조회 4,274
17년 전 조회 2,011
17년 전 조회 3,685
17년 전 조회 1,584
17년 전 조회 1,410
17년 전 조회 2,348
17년 전 조회 1,341
17년 전 조회 1,657
17년 전 조회 1,491
17년 전 조회 2,560
17년 전 조회 1,525
17년 전 조회 1,119
17년 전 조회 1,253
17년 전 조회 3,126
17년 전 조회 2,180
17년 전 조회 1,997
17년 전 조회 1,238
17년 전 조회 2,471
17년 전 조회 1,195
17년 전 조회 1,153