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

· 13년 전 · 6293 · 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,882
13년 전 조회 2,192
13년 전 조회 3,949
13년 전 조회 3,975
13년 전 조회 2,945
13년 전 조회 4,388
13년 전 조회 8,039
13년 전 조회 3,598
13년 전 조회 2,207
13년 전 조회 3,356
13년 전 조회 3,299
13년 전 조회 4,059
13년 전 조회 2,072
13년 전 조회 3,164
13년 전 조회 2,073
13년 전 조회 3,224
13년 전 조회 4,148
13년 전 조회 2,509
13년 전 조회 5,353
13년 전 조회 1.1만
13년 전 조회 2,592
13년 전 조회 3,975
13년 전 조회 3,571
13년 전 조회 4,308
13년 전 조회 7,515
13년 전 조회 3,944
13년 전 조회 4,466
13년 전 조회 2,472
13년 전 조회 2,222
13년 전 조회 3,330
13년 전 조회 7,345
13년 전 조회 2,919
13년 전 조회 6,210
13년 전 조회 2,199
13년 전 조회 5,567
13년 전 조회 2,726
13년 전 조회 2,579
13년 전 조회 2,906
13년 전 조회 2,763
13년 전 조회 2,009
13년 전 조회 1,981
13년 전 조회 2.2만
13년 전 조회 1,952
13년 전 조회 2,532
13년 전 조회 2,533
13년 전 조회 2,783
13년 전 조회 4,960
13년 전 조회 2,176
13년 전 조회 3,643
13년 전 조회 6,294
13년 전 조회 2,142
13년 전 조회 5,325
13년 전 조회 2,480
13년 전 조회 5,270
13년 전 조회 2,358
13년 전 조회 3,210
13년 전 조회 2,343
13년 전 조회 3,627
13년 전 조회 9,422
13년 전 조회 3,399
13년 전 조회 3,194
13년 전 조회 3,005
13년 전 조회 2,019
13년 전 조회 3,535
13년 전 조회 3,328
13년 전 조회 2,091
13년 전 조회 2,653
13년 전 조회 2,079
13년 전 조회 2,225
13년 전 조회 2,645
13년 전 조회 5,034
13년 전 조회 3,538
13년 전 조회 3,760
13년 전 조회 5,121
13년 전 조회 4,901
13년 전 조회 4,562
13년 전 조회 5,442
13년 전 조회 2,404
13년 전 조회 7,379
13년 전 조회 2,769
13년 전 조회 2,617
13년 전 조회 4,810
13년 전 조회 4,498
13년 전 조회 6,615
13년 전 조회 4,161
13년 전 조회 4,809
13년 전 조회 2,477
13년 전 조회 2,286
13년 전 조회 3,476
13년 전 조회 2,283
13년 전 조회 3,644
13년 전 조회 2,963
13년 전 조회 2,564
13년 전 조회 3,562
13년 전 조회 3,562
13년 전 조회 2,771
13년 전 조회 2,270
13년 전 조회 2,830
13년 전 조회 2,297
13년 전 조회 2,648