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

· 13년 전 · 5816 · 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,399
13년 전 조회 1,728
13년 전 조회 3,440
13년 전 조회 3,470
13년 전 조회 2,428
13년 전 조회 3,856
13년 전 조회 7,545
13년 전 조회 3,113
13년 전 조회 1,679
13년 전 조회 2,845
13년 전 조회 2,802
13년 전 조회 3,549
13년 전 조회 1,530
13년 전 조회 2,620
13년 전 조회 1,599
13년 전 조회 2,736
13년 전 조회 3,624
13년 전 조회 2,080
13년 전 조회 4,804
13년 전 조회 1.1만
13년 전 조회 2,083
13년 전 조회 3,469
13년 전 조회 3,062
13년 전 조회 3,896
13년 전 조회 7,012
13년 전 조회 3,545
13년 전 조회 3,962
13년 전 조회 1,938
13년 전 조회 1,706
13년 전 조회 2,814
13년 전 조회 6,805
13년 전 조회 2,426
13년 전 조회 5,651
13년 전 조회 1,748
13년 전 조회 5,052
13년 전 조회 2,228
13년 전 조회 2,034
13년 전 조회 2,489
13년 전 조회 2,245
13년 전 조회 1,472
13년 전 조회 1,456
13년 전 조회 2.1만
13년 전 조회 1,431
13년 전 조회 2,001
13년 전 조회 2,036
13년 전 조회 2,265
13년 전 조회 4,411
13년 전 조회 1,619
13년 전 조회 3,139
13년 전 조회 5,817
13년 전 조회 1,595
13년 전 조회 4,783
13년 전 조회 1,983
13년 전 조회 4,691
13년 전 조회 1,818
13년 전 조회 2,690
13년 전 조회 1,846
13년 전 조회 3,082
13년 전 조회 8,885
13년 전 조회 2,880
13년 전 조회 2,681
13년 전 조회 2,445
13년 전 조회 1,499
13년 전 조회 3,042
13년 전 조회 2,815
13년 전 조회 1,553
13년 전 조회 2,122
13년 전 조회 1,523
13년 전 조회 1,833
13년 전 조회 2,158
13년 전 조회 4,520
13년 전 조회 3,052
13년 전 조회 3,221
13년 전 조회 4,604
13년 전 조회 4,365
13년 전 조회 4,035
13년 전 조회 4,890
13년 전 조회 1,924
13년 전 조회 6,878
13년 전 조회 2,227
13년 전 조회 2,074
13년 전 조회 4,300
13년 전 조회 3,965
13년 전 조회 6,115
13년 전 조회 3,656
13년 전 조회 4,304
13년 전 조회 1,990
13년 전 조회 1,791
13년 전 조회 3,014
13년 전 조회 1,748
13년 전 조회 3,150
13년 전 조회 2,466
13년 전 조회 2,049
13년 전 조회 3,048
13년 전 조회 3,084
13년 전 조회 2,288
13년 전 조회 1,768
13년 전 조회 2,296
13년 전 조회 1,808
13년 전 조회 2,188