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

· 9년 전 · 431

<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년 전 조회 435
9년 전 조회 541
9년 전 조회 476
9년 전 조회 533
9년 전 조회 626
9년 전 조회 412
9년 전 조회 469
9년 전 조회 475
9년 전 조회 617
9년 전 조회 427
9년 전 조회 555
9년 전 조회 396
9년 전 조회 437
9년 전 조회 346
9년 전 조회 541
9년 전 조회 422
9년 전 조회 433
9년 전 조회 472
9년 전 조회 431
9년 전 조회 425
9년 전 조회 388
9년 전 조회 774
9년 전 조회 828
9년 전 조회 793
9년 전 조회 719
9년 전 조회 504
9년 전 조회 686
9년 전 조회 795
9년 전 조회 492
9년 전 조회 783
9년 전 조회 745
9년 전 조회 1,145
9년 전 조회 750
9년 전 조회 953
9년 전 조회 624
9년 전 조회 734
9년 전 조회 515
9년 전 조회 477
9년 전 조회 603
9년 전 조회 574
9년 전 조회 758
9년 전 조회 466
9년 전 조회 549
9년 전 조회 503
9년 전 조회 442
9년 전 조회 517
9년 전 조회 396
9년 전 조회 424
9년 전 조회 386
9년 전 조회 432
9년 전 조회 422
9년 전 조회 870
9년 전 조회 387
9년 전 조회 322
9년 전 조회 587
9년 전 조회 393
9년 전 조회 416
9년 전 조회 367
9년 전 조회 344
9년 전 조회 298
9년 전 조회 286
9년 전 조회 340
9년 전 조회 361
9년 전 조회 299
9년 전 조회 244
9년 전 조회 354
9년 전 조회 295
9년 전 조회 321
9년 전 조회 334
9년 전 조회 375
9년 전 조회 264
9년 전 조회 306
9년 전 조회 370
9년 전 조회 291
9년 전 조회 408
9년 전 조회 342
9년 전 조회 275
9년 전 조회 245
9년 전 조회 294
9년 전 조회 239
9년 전 조회 280
9년 전 조회 302
9년 전 조회 242
9년 전 조회 297
9년 전 조회 256
9년 전 조회 369
9년 전 조회 457
10년 전 조회 415
10년 전 조회 364
10년 전 조회 323
10년 전 조회 370
10년 전 조회 312
10년 전 조회 341
10년 전 조회 293
10년 전 조회 263
10년 전 조회 271
10년 전 조회 304
10년 전 조회 362
10년 전 조회 329
10년 전 조회 382
🐛 버그신고