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

· 13년 전 · 5679 · 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개

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

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
13년 전 조회 2,273
13년 전 조회 1,603
13년 전 조회 3,339
13년 전 조회 3,329
13년 전 조회 2,315
13년 전 조회 3,726
13년 전 조회 7,418
13년 전 조회 3,001
13년 전 조회 1,557
13년 전 조회 2,722
13년 전 조회 2,694
13년 전 조회 3,441
13년 전 조회 1,414
13년 전 조회 2,507
13년 전 조회 1,570
13년 전 조회 2,594
13년 전 조회 3,496
13년 전 조회 2,057
13년 전 조회 4,694
13년 전 조회 1.1만
13년 전 조회 1,956
13년 전 조회 3,327
13년 전 조회 2,947
13년 전 조회 3,869
13년 전 조회 6,863
13년 전 조회 3,518
13년 전 조회 3,838
13년 전 조회 1,802
13년 전 조회 1,578
13년 전 조회 2,677
13년 전 조회 6,683
13년 전 조회 2,298
13년 전 조회 5,536
13년 전 조회 1,715
13년 전 조회 4,937
13년 전 조회 2,101
13년 전 조회 1,904
13년 전 조회 2,457
13년 전 조회 2,093
13년 전 조회 1,356
13년 전 조회 1,334
13년 전 조회 2.1만
13년 전 조회 1,301
13년 전 조회 1,864
13년 전 조회 1,892
13년 전 조회 2,119
13년 전 조회 4,266
13년 전 조회 1,484
13년 전 조회 3,014
13년 전 조회 5,680
13년 전 조회 1,459
13년 전 조회 4,648
13년 전 조회 1,851
13년 전 조회 4,571
13년 전 조회 1,687
13년 전 조회 2,552
13년 전 조회 1,741
13년 전 조회 2,961
13년 전 조회 8,758
13년 전 조회 2,745
13년 전 조회 2,537
13년 전 조회 2,348
13년 전 조회 1,368
13년 전 조회 2,908
13년 전 조회 2,665
13년 전 조회 1,408
13년 전 조회 1,991
13년 전 조회 1,392
13년 전 조회 1,809
13년 전 조회 2,007
13년 전 조회 4,385
13년 전 조회 2,913
13년 전 조회 3,086
13년 전 조회 4,457
13년 전 조회 4,211
13년 전 조회 3,881
13년 전 조회 4,737
13년 전 조회 1,779
13년 전 조회 6,732
13년 전 조회 2,087
13년 전 조회 1,952
13년 전 조회 4,161
13년 전 조회 3,806
13년 전 조회 5,974
13년 전 조회 3,507
13년 전 조회 4,152
13년 전 조회 1,841
13년 전 조회 1,638
13년 전 조회 2,854
13년 전 조회 1,604
13년 전 조회 2,991
13년 전 조회 2,322
13년 전 조회 1,902
13년 전 조회 2,915
13년 전 조회 3,047
13년 전 조회 2,132
13년 전 조회 1,623
13년 전 조회 2,153
13년 전 조회 1,656
13년 전 조회 2,055