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

· 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년 전 조회 591
9년 전 조회 515
9년 전 조회 579
9년 전 조회 670
9년 전 조회 449
9년 전 조회 511
9년 전 조회 510
9년 전 조회 657
9년 전 조회 474
9년 전 조회 613
9년 전 조회 438
9년 전 조회 489
9년 전 조회 379
9년 전 조회 576
9년 전 조회 468
9년 전 조회 473
9년 전 조회 516
9년 전 조회 468
9년 전 조회 471
9년 전 조회 436
9년 전 조회 822
9년 전 조회 867
9년 전 조회 838
9년 전 조회 761
9년 전 조회 552
9년 전 조회 727
9년 전 조회 852
9년 전 조회 539
9년 전 조회 827
9년 전 조회 791
9년 전 조회 1,195
9년 전 조회 798
9년 전 조회 998
9년 전 조회 662
9년 전 조회 783
9년 전 조회 557
9년 전 조회 523
9년 전 조회 650
9년 전 조회 615
9년 전 조회 806
9년 전 조회 514
9년 전 조회 592
9년 전 조회 549
9년 전 조회 488
9년 전 조회 565
9년 전 조회 437
9년 전 조회 469
9년 전 조회 425
9년 전 조회 489
9년 전 조회 472
9년 전 조회 910
9년 전 조회 438
9년 전 조회 361
9년 전 조회 632
9년 전 조회 446
9년 전 조회 455
9년 전 조회 415
9년 전 조회 385
9년 전 조회 345
9년 전 조회 325
9년 전 조회 376
9년 전 조회 399
9년 전 조회 341
9년 전 조회 283
9년 전 조회 394
9년 전 조회 338
9년 전 조회 359
9년 전 조회 384
9년 전 조회 421
9년 전 조회 302
9년 전 조회 348
9년 전 조회 405
9년 전 조회 334
9년 전 조회 451
9년 전 조회 381
9년 전 조회 315
9년 전 조회 286
9년 전 조회 338
9년 전 조회 285
9년 전 조회 322
9년 전 조회 348
9년 전 조회 280
9년 전 조회 339
9년 전 조회 297
9년 전 조회 408
9년 전 조회 493
10년 전 조회 453
10년 전 조회 402
10년 전 조회 357
10년 전 조회 413
10년 전 조회 352
10년 전 조회 374
10년 전 조회 331
10년 전 조회 297
10년 전 조회 301
10년 전 조회 333
10년 전 조회 404
10년 전 조회 367
10년 전 조회 419
🐛 버그신고