휴대폰번호 검사 하기 입니다.

· 9년 전 · 428

<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);'  >
 

|
댓글을 작성하시려면 로그인이 필요합니다. 로그인

프로그램

+
제목 글쓴이 날짜 조회
9년 전 조회 431
9년 전 조회 536
9년 전 조회 471
9년 전 조회 529
9년 전 조회 624
9년 전 조회 410
9년 전 조회 465
9년 전 조회 472
9년 전 조회 613
9년 전 조회 426
9년 전 조회 550
9년 전 조회 393
9년 전 조회 433
9년 전 조회 344
9년 전 조회 537
9년 전 조회 419
9년 전 조회 427
9년 전 조회 467
9년 전 조회 428
9년 전 조회 419
9년 전 조회 385
9년 전 조회 766
9년 전 조회 824
9년 전 조회 789
9년 전 조회 714
9년 전 조회 498
9년 전 조회 685
9년 전 조회 793
9년 전 조회 491
9년 전 조회 779
9년 전 조회 741
9년 전 조회 1,143
9년 전 조회 748
9년 전 조회 947
9년 전 조회 621
9년 전 조회 732
9년 전 조회 513
9년 전 조회 474
9년 전 조회 599
9년 전 조회 570
9년 전 조회 753
9년 전 조회 460
9년 전 조회 547
9년 전 조회 501
9년 전 조회 440
9년 전 조회 513
9년 전 조회 395
9년 전 조회 419
9년 전 조회 384
9년 전 조회 429
9년 전 조회 419
9년 전 조회 868
9년 전 조회 384
9년 전 조회 318
9년 전 조회 583
9년 전 조회 390
9년 전 조회 414
9년 전 조회 365
9년 전 조회 341
9년 전 조회 297
9년 전 조회 284
9년 전 조회 339
9년 전 조회 360
9년 전 조회 297
9년 전 조회 242
9년 전 조회 353
9년 전 조회 293
9년 전 조회 319
9년 전 조회 332
9년 전 조회 374
9년 전 조회 263
9년 전 조회 305
9년 전 조회 369
9년 전 조회 290
9년 전 조회 407
9년 전 조회 341
9년 전 조회 274
9년 전 조회 244
9년 전 조회 293
9년 전 조회 239
9년 전 조회 279
9년 전 조회 300
9년 전 조회 241
9년 전 조회 297
9년 전 조회 255
9년 전 조회 369
9년 전 조회 456
10년 전 조회 413
10년 전 조회 364
10년 전 조회 321
10년 전 조회 369
10년 전 조회 311
10년 전 조회 340
10년 전 조회 293
10년 전 조회 262
10년 전 조회 271
10년 전 조회 304
10년 전 조회 362
10년 전 조회 329
10년 전 조회 382
🐛 버그신고