휴대폰번호 검사

· 17년 전 · 1582

<SCRIPT LANGUAGE="JavaScript">
<!--
function maskHp(obj) {
    var str = obj.value;
    if ( str ) {
        //var pattern = /[^(ㄱ-&#55203;)]|[-/\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,861
16년 전 조회 1,906
16년 전 조회 3,676
16년 전 조회 1,458
16년 전 조회 1,747
16년 전 조회 2,061
16년 전 조회 2,601
16년 전 조회 2,301
16년 전 조회 2,744
16년 전 조회 2,981
16년 전 조회 3,007
16년 전 조회 1,811
16년 전 조회 1,531
16년 전 조회 1,404
16년 전 조회 1,715
16년 전 조회 1,199
16년 전 조회 1,956
16년 전 조회 1,727
16년 전 조회 1,603
16년 전 조회 1,288
16년 전 조회 2,163
16년 전 조회 3,224
16년 전 조회 2,158
16년 전 조회 1,733
16년 전 조회 1,500
16년 전 조회 2,034
16년 전 조회 4,721
16년 전 조회 1,406
16년 전 조회 2,140
16년 전 조회 2,123
16년 전 조회 2,390
16년 전 조회 2,139
17년 전 조회 4,425
17년 전 조회 2,920
17년 전 조회 2,857
17년 전 조회 1,593
17년 전 조회 1,230
17년 전 조회 3,934
17년 전 조회 1,608
17년 전 조회 1,600
17년 전 조회 2,100
17년 전 조회 1,872
17년 전 조회 1,487
17년 전 조회 3,910
17년 전 조회 1,746
17년 전 조회 3,119
17년 전 조회 3,001
17년 전 조회 1,032
17년 전 조회 1,841
17년 전 조회 1,583
17년 전 조회 1,844
17년 전 조회 2,634
17년 전 조회 3,018
17년 전 조회 3,211
17년 전 조회 3,316
17년 전 조회 1,453
17년 전 조회 1,410
17년 전 조회 2,243
17년 전 조회 1,967
17년 전 조회 2,282
17년 전 조회 2,804
17년 전 조회 3,258
17년 전 조회 2,356
17년 전 조회 1,627
17년 전 조회 3,198
17년 전 조회 3,064
17년 전 조회 3,040
17년 전 조회 3,907
17년 전 조회 2,580
17년 전 조회 2,401
17년 전 조회 2,651
17년 전 조회 2,888
17년 전 조회 2,606
17년 전 조회 1,446
17년 전 조회 1,890
17년 전 조회 1,484
17년 전 조회 1,907
17년 전 조회 2,503
17년 전 조회 8,689
17년 전 조회 3,149
17년 전 조회 4,236
17년 전 조회 1,979
17년 전 조회 3,654
17년 전 조회 1,547
17년 전 조회 1,380
17년 전 조회 2,318
17년 전 조회 1,309
17년 전 조회 1,623
17년 전 조회 1,454
17년 전 조회 2,522
17년 전 조회 1,491
17년 전 조회 1,083
17년 전 조회 1,217
17년 전 조회 3,093
17년 전 조회 2,158
17년 전 조회 1,965
17년 전 조회 1,207
17년 전 조회 2,442
17년 전 조회 1,165
17년 전 조회 1,124
🐛 버그신고