휴대폰번호 검사

· 17년 전 · 1599

<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,878
16년 전 조회 1,923
16년 전 조회 3,689
16년 전 조회 1,473
16년 전 조회 1,762
16년 전 조회 2,076
16년 전 조회 2,618
16년 전 조회 2,315
16년 전 조회 2,754
16년 전 조회 2,999
16년 전 조회 3,019
16년 전 조회 1,824
16년 전 조회 1,547
16년 전 조회 1,418
16년 전 조회 1,732
16년 전 조회 1,213
16년 전 조회 1,972
16년 전 조회 1,744
16년 전 조회 1,619
16년 전 조회 1,301
16년 전 조회 2,177
16년 전 조회 3,236
16년 전 조회 2,168
16년 전 조회 1,747
16년 전 조회 1,516
16년 전 조회 2,050
16년 전 조회 4,733
17년 전 조회 1,420
17년 전 조회 2,158
17년 전 조회 2,138
17년 전 조회 2,411
17년 전 조회 2,157
17년 전 조회 4,442
17년 전 조회 2,939
17년 전 조회 2,875
17년 전 조회 1,607
17년 전 조회 1,245
17년 전 조회 3,954
17년 전 조회 1,626
17년 전 조회 1,619
17년 전 조회 2,121
17년 전 조회 1,888
17년 전 조회 1,504
17년 전 조회 3,924
17년 전 조회 1,763
17년 전 조회 3,136
17년 전 조회 3,014
17년 전 조회 1,047
17년 전 조회 1,856
17년 전 조회 1,600
17년 전 조회 1,859
17년 전 조회 2,649
17년 전 조회 3,031
17년 전 조회 3,227
17년 전 조회 3,333
17년 전 조회 1,467
17년 전 조회 1,427
17년 전 조회 2,262
17년 전 조회 1,985
17년 전 조회 2,297
17년 전 조회 2,822
17년 전 조회 3,270
17년 전 조회 2,371
17년 전 조회 1,639
17년 전 조회 3,212
17년 전 조회 3,078
17년 전 조회 3,052
17년 전 조회 3,920
17년 전 조회 2,594
17년 전 조회 2,415
17년 전 조회 2,665
17년 전 조회 2,901
17년 전 조회 2,618
17년 전 조회 1,461
17년 전 조회 1,907
17년 전 조회 1,497
17년 전 조회 1,922
17년 전 조회 2,520
17년 전 조회 8,702
17년 전 조회 3,162
17년 전 조회 4,250
17년 전 조회 1,989
17년 전 조회 3,667
17년 전 조회 1,561
17년 전 조회 1,393
17년 전 조회 2,331
17년 전 조회 1,323
17년 전 조회 1,639
17년 전 조회 1,474
17년 전 조회 2,540
17년 전 조회 1,507
17년 전 조회 1,098
17년 전 조회 1,232
17년 전 조회 3,107
17년 전 조회 2,172
17년 전 조회 1,979
17년 전 조회 1,223
17년 전 조회 2,455
17년 전 조회 1,175
17년 전 조회 1,138
🐛 버그신고