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

· 9년 전 · 429

<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년 전 조회 432
9년 전 조회 537
9년 전 조회 472
9년 전 조회 531
9년 전 조회 625
9년 전 조회 411
9년 전 조회 467
9년 전 조회 474
9년 전 조회 615
9년 전 조회 426
9년 전 조회 551
9년 전 조회 394
9년 전 조회 435
9년 전 조회 345
9년 전 조회 539
9년 전 조회 420
9년 전 조회 430
9년 전 조회 469
9년 전 조회 429
9년 전 조회 421
9년 전 조회 387
9년 전 조회 769
9년 전 조회 826
9년 전 조회 791
9년 전 조회 718
9년 전 조회 500
9년 전 조회 686
9년 전 조회 794
9년 전 조회 491
9년 전 조회 781
9년 전 조회 743
9년 전 조회 1,144
9년 전 조회 749
9년 전 조회 950
9년 전 조회 623
9년 전 조회 733
9년 전 조회 515
9년 전 조회 476
9년 전 조회 600
9년 전 조회 572
9년 전 조회 756
9년 전 조회 463
9년 전 조회 547
9년 전 조회 502
9년 전 조회 441
9년 전 조회 514
9년 전 조회 396
9년 전 조회 422
9년 전 조회 385
9년 전 조회 430
9년 전 조회 421
9년 전 조회 869
9년 전 조회 384
9년 전 조회 320
9년 전 조회 585
9년 전 조회 393
9년 전 조회 415
9년 전 조회 366
9년 전 조회 343
9년 전 조회 298
9년 전 조회 285
9년 전 조회 339
9년 전 조회 361
9년 전 조회 298
9년 전 조회 242
9년 전 조회 353
9년 전 조회 294
9년 전 조회 321
9년 전 조회 332
9년 전 조회 374
9년 전 조회 263
9년 전 조회 305
9년 전 조회 369
9년 전 조회 291
9년 전 조회 407
9년 전 조회 341
9년 전 조회 274
9년 전 조회 244
9년 전 조회 293
9년 전 조회 239
9년 전 조회 279
9년 전 조회 301
9년 전 조회 241
9년 전 조회 297
9년 전 조회 255
9년 전 조회 369
9년 전 조회 456
10년 전 조회 413
10년 전 조회 364
10년 전 조회 321
10년 전 조회 370
10년 전 조회 311
10년 전 조회 340
10년 전 조회 293
10년 전 조회 262
10년 전 조회 271
10년 전 조회 304
10년 전 조회 362
10년 전 조회 329
10년 전 조회 382
🐛 버그신고