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

· 9년 전 · 488

<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년 전 조회 482
9년 전 조회 590
9년 전 조회 512
9년 전 조회 579
9년 전 조회 669
9년 전 조회 449
9년 전 조회 511
9년 전 조회 510
9년 전 조회 657
9년 전 조회 473
9년 전 조회 611
9년 전 조회 436
9년 전 조회 489
9년 전 조회 379
9년 전 조회 575
9년 전 조회 468
9년 전 조회 473
9년 전 조회 515
9년 전 조회 468
9년 전 조회 471
9년 전 조회 435
9년 전 조회 822
9년 전 조회 867
9년 전 조회 837
9년 전 조회 760
9년 전 조회 552
9년 전 조회 727
9년 전 조회 852
9년 전 조회 539
9년 전 조회 827
9년 전 조회 790
9년 전 조회 1,194
9년 전 조회 798
9년 전 조회 998
9년 전 조회 662
9년 전 조회 783
9년 전 조회 556
9년 전 조회 523
9년 전 조회 650
9년 전 조회 615
9년 전 조회 804
9년 전 조회 514
9년 전 조회 591
9년 전 조회 548
9년 전 조회 488
9년 전 조회 565
9년 전 조회 437
9년 전 조회 469
9년 전 조회 424
9년 전 조회 488
9년 전 조회 472
9년 전 조회 910
9년 전 조회 438
9년 전 조회 361
9년 전 조회 632
9년 전 조회 446
9년 전 조회 454
9년 전 조회 414
9년 전 조회 385
9년 전 조회 344
9년 전 조회 324
9년 전 조회 376
9년 전 조회 399
9년 전 조회 340
9년 전 조회 283
9년 전 조회 393
9년 전 조회 337
9년 전 조회 358
9년 전 조회 383
9년 전 조회 420
9년 전 조회 302
9년 전 조회 348
9년 전 조회 404
9년 전 조회 333
9년 전 조회 450
9년 전 조회 381
9년 전 조회 315
9년 전 조회 285
9년 전 조회 337
9년 전 조회 284
9년 전 조회 320
9년 전 조회 346
9년 전 조회 278
9년 전 조회 338
9년 전 조회 296
9년 전 조회 407
9년 전 조회 493
10년 전 조회 453
10년 전 조회 400
10년 전 조회 356
10년 전 조회 412
10년 전 조회 351
10년 전 조회 373
10년 전 조회 331
10년 전 조회 297
10년 전 조회 301
10년 전 조회 333
10년 전 조회 404
10년 전 조회 367
10년 전 조회 419
🐛 버그신고