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

· 9년 전 · 422

<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년 전 조회 411
9년 전 조회 521
9년 전 조회 458
9년 전 조회 523
9년 전 조회 615
9년 전 조회 399
9년 전 조회 459
9년 전 조회 458
9년 전 조회 604
9년 전 조회 412
9년 전 조회 533
9년 전 조회 388
9년 전 조회 429
9년 전 조회 340
9년 전 조회 528
9년 전 조회 414
9년 전 조회 421
9년 전 조회 461
9년 전 조회 419
9년 전 조회 414
9년 전 조회 370
9년 전 조회 760
9년 전 조회 821
9년 전 조회 783
9년 전 조회 703
9년 전 조회 489
9년 전 조회 677
9년 전 조회 786
9년 전 조회 477
9년 전 조회 771
9년 전 조회 735
9년 전 조회 1,132
9년 전 조회 742
9년 전 조회 937
9년 전 조회 618
9년 전 조회 723
9년 전 조회 507
9년 전 조회 468
9년 전 조회 594
9년 전 조회 565
9년 전 조회 741
9년 전 조회 454
9년 전 조회 541
9년 전 조회 488
9년 전 조회 436
9년 전 조회 508
9년 전 조회 393
9년 전 조회 411
9년 전 조회 376
9년 전 조회 422
9년 전 조회 410
9년 전 조회 858
9년 전 조회 377
9년 전 조회 311
9년 전 조회 574
9년 전 조회 382
9년 전 조회 409
9년 전 조회 361
9년 전 조회 337
9년 전 조회 295
9년 전 조회 279
9년 전 조회 336
9년 전 조회 356
9년 전 조회 294
9년 전 조회 239
9년 전 조회 348
9년 전 조회 287
9년 전 조회 317
9년 전 조회 330
9년 전 조회 373
9년 전 조회 263
9년 전 조회 303
9년 전 조회 369
9년 전 조회 287
9년 전 조회 406
9년 전 조회 341
9년 전 조회 273
9년 전 조회 244
9년 전 조회 293
9년 전 조회 237
9년 전 조회 278
9년 전 조회 300
9년 전 조회 241
9년 전 조회 296
9년 전 조회 255
9년 전 조회 368
9년 전 조회 456
10년 전 조회 413
10년 전 조회 364
10년 전 조회 321
10년 전 조회 368
10년 전 조회 310
10년 전 조회 340
10년 전 조회 293
10년 전 조회 262
10년 전 조회 271
10년 전 조회 304
10년 전 조회 362
10년 전 조회 329
10년 전 조회 381
🐛 버그신고