주민번호, 외국인번호 검사 스크립트

· 13년 전 · 5982 · 2
// 내국인
function ssnCheck(ssn) {
  var lastid, li_mod, li_minus, li_last;
  var checkValue = 0;

  if (ssn.length != 13) return false;
  lastid = parseFloat(ssn.substring(12,13));   
  
  checkValue += (parseInt(ssn.substring(0,1)) * 2) + (parseInt(ssn.substring(1,2)) * 3) 
+ (parseInt(ssn.substring(2,3)) * 4) + (parseInt(ssn.substring(3,4)) * 5) 
+ (parseInt(ssn.substring(4,5)) * 6) + (parseInt(ssn.substring(5,6)) * 7) 
+ (parseInt(ssn.substring(6,7)) * 8) + (parseInt(ssn.substring(7,8)) * 9) 
+ (+parseInt(ssn.substring(8,9)) * 2)  + (parseInt(ssn.substring(9,10)) * 3) 
+ (parseInt(ssn.substring(10,11)) * 4) + (parseInt(ssn.substring(11,12)) * 5);

  li_mod = checkValue % 11;
  li_minus = 11 - li_mod;
  li_last = li_minus % 10;

  if (li_last != lastid) return false;
  
  return true;
}


// 외국인
function isFrgNo(fgnno) { 
  var sum = 0; 
  var odd = 0; 
  buf = new Array(13); 

  for(i=0; i<13; i++) buf[i] = parseInt(fgnno.charAt(i)); 

  odd = buf[7]*10 + buf[8]; 

  if(odd%2 != 0) return false; 

  if((buf[11]!=6) && (buf[11]!=7) && (buf[11]!=8) && (buf[11]!=9)) return false; 

  multipliers = [2,3,4,5,6,7,8,9,2,3,4,5]; 

  for(i=0, sum=0; i<12; i++) sum += (buf[i] *= multipliers[i]); 

  sum = 11 - (sum%11); 

  if(sum >= 10) sum -= 10; 

  sum += 2; 
  if(sum >= 10) sum -= 10; 

  if(sum != buf[12]) return false;

  return true; 
}

<script>
function number_check(){ 
var f = document.frm;
var ssn1 = f.jumin1.value;
var ssn2 = f.jumin2.value;
var ssn = ssn1 + ssn2;

if(ssn2.substring(0,1) == '1' || ssn2.substring(0,1) == '3' || 
ssn2.substring(0,1) == '2' || ssn2.substring(0,1) == '4') {
// 국내 주민번호 체크
if (ssnCheck(ssn) == false ) {
alert('주민번호를 정확히 입력하십시오.');
f.jumin1.value = '';
f.jumin2.value = '';
f.jumin1.focus();
return;
}
} else {
// 외국인 등록번호 체크
if(isFrgNo(ssn) == false) {
alert( "외국인 등록번호를 정확히 입력하십시오." );
f.jumin1.value = '';
f.jumin2.value = '';
f.jumin1.focus();
return;
}   
}
}
</script>

<form name="frm" onsubmit="return false;">
<input type="text" name="jumin1"> - <input type="password" name="jumin2"> <button onclick="number_check()">체크</button>
</form>
|

댓글 2개

필요할때 헤매는 소스 감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 2,567
13년 전 조회 1,898
13년 전 조회 3,636
13년 전 조회 3,657
13년 전 조회 2,616
13년 전 조회 4,048
13년 전 조회 7,720
13년 전 조회 3,314
13년 전 조회 1,884
13년 전 조회 3,034
13년 전 조회 2,995
13년 전 조회 3,768
13년 전 조회 1,722
13년 전 조회 2,838
13년 전 조회 1,852
13년 전 조회 2,925
13년 전 조회 3,813
13년 전 조회 2,294
13년 전 조회 5,021
13년 전 조회 1.1만
13년 전 조회 2,289
13년 전 조회 3,652
13년 전 조회 3,263
13년 전 조회 4,115
13년 전 조회 7,179
13년 전 조회 3,748
13년 전 조회 4,140
13년 전 조회 2,127
13년 전 조회 1,899
13년 전 조회 2,992
13년 전 조회 7,005
13년 전 조회 2,601
13년 전 조회 5,868
13년 전 조회 1,974
13년 전 조회 5,242
13년 전 조회 2,410
13년 전 조회 2,237
13년 전 조회 2,710
13년 전 조회 2,422
13년 전 조회 1,670
13년 전 조회 1,652
13년 전 조회 2.2만
13년 전 조회 1,618
13년 전 조회 2,201
13년 전 조회 2,217
13년 전 조회 2,447
13년 전 조회 4,576
13년 전 조회 1,814
13년 전 조회 3,319
13년 전 조회 5,983
13년 전 조회 1,789
13년 전 조회 4,974
13년 전 조회 2,172
13년 전 조회 4,904
13년 전 조회 2,001
13년 전 조회 2,869
13년 전 조회 2,033
13년 전 조회 3,274
13년 전 조회 9,065
13년 전 조회 3,049
13년 전 조회 2,864
13년 전 조회 2,658
13년 전 조회 1,684
13년 전 조회 3,216
13년 전 조회 3,003
13년 전 조회 1,757
13년 전 조회 2,305
13년 전 조회 1,708
13년 전 조회 2,025
13년 전 조회 2,348
13년 전 조회 4,701
13년 전 조회 3,213
13년 전 조회 3,412
13년 전 조회 4,791
13년 전 조회 4,545
13년 전 조회 4,210
13년 전 조회 5,085
13년 전 조회 2,094
13년 전 조회 7,073
13년 전 조회 2,450
13년 전 조회 2,271
13년 전 조회 4,483
13년 전 조회 4,142
13년 전 조회 6,292
13년 전 조회 3,865
13년 전 조회 4,513
13년 전 조회 2,187
13년 전 조회 1,973
13년 전 조회 3,204
13년 전 조회 1,957
13년 전 조회 3,337
13년 전 조회 2,637
13년 전 조회 2,246
13년 전 조회 3,245
13년 전 조회 3,358
13년 전 조회 2,453
13년 전 조회 1,954
13년 전 조회 2,533
13년 전 조회 1,996
13년 전 조회 2,367