본문 바로가기
금융 지식

정기 예금이자 비교 목돈 굴리기 저축은행 계산기

by 온나인장인 2022. 6. 15.
반응형
예치금액
예치기간 개월
이자율 %
이자

 

 


 

예금이자 계산기를 검색하면 네이버나 저축은행의 서비스를 이용할 수 있습니다. 그러나 예금이 여러 개라면 여러 번 입력해야 하는 번거로움이 있습니다. 이를 한 번에 입력해서 한눈에 볼 수 있는 예금이자 계산기를 만들어보았습니다. 사용하면서 아쉬운 기능이 있다면 말씀해주세요. 실력이 닿는 대로 구현해보겠습니다.

 

정기예금 금리비교 모아보기

회전예금 : 1년간의 복리이자를 1년이 되는 시점에 지급하며, 원금만 이어서 운용.

복리/단리 : 복리는 일정기간의 복리이자를 일정기간에 도달했을 때 지급하고 단리는 매달 일정 금액을 지급.

 

:: 모아 저축은행

- e-회전 정기예금(3.1%~, 변동금리, 복리/단리, 3년, 예금보호, 일반과세)

- e-모아 정기예금(3.24%~, 고정금리, 복리/단리, 2년, 예금보호, 일반과세)

- 생일 축하 정기적금(3.2%~, 고정금리, 복리, 2년, 예금보호, 일반과세)

 

:: 국민은행

- KB Star 정기예금(1.31~, 변동금리, 복리, 3년, 예금보호, 일반과세)

기간 기본이율 고객적용이율
1~3개월 0.50 1.31%
3~6개월 0.60 1.74%
6~12개월 0.70 2.04%
12~24개월 0.70 2.47%
24~36개월 0.80 2.51%
36개월 0.90 2.60%

:: 신한은행

- 쏠 편한 정기예금(1.45~, 고시금리, 단리, 5년, 예금보호, 일반과세)

기간 기본(%) 온라인(%)
1개월이상 1.25 1.45
3개월이상 1.4 1.9
6개월이상 1.6 2.1
9개월이상 1.7 2.1
12개월이상 1.85 2.45
24개월이상 2.05 2.45
36개월이상 2.15 2.5
48개월이상 2.2 2.5
60개월이상 2.3 2.5

:: ibk기업은행

- IBK D-Day통장(단기 중소기업금융채권)(1.86~, 변동금리, 복리, 364일, 예금 비보호, 일반과세)

기간 금리(%)
30일 1.86
92일 2.15
183일 2.39
275일 2.67
364일 2.94

:: 우리은행

- 모이면 금리가 올라가는 예금(2.2~, 고시금리, 복리, 1년, 예금보호, 일반과세)

기간 모인금액 금리(%)
1년 300억원 이상 2.2
  100억원 이상 2.2
  100억원 미만 2.2
6개월 300억원 이상 1.6
  100억원 이상 1.6
  100억원 미만 1.6
3개월 300억원 이상 1.4
  100억원 이상 1.4
  100억원 미만 1.4

:: 저축은행 특판

:: ok저축은행

- ISA정기예금(1.0~3.2%, 고정금리, 월복리, 3개월~3년, 예금보호, ISA-200만 원까지 비과세)

기간 금리
3개월 1%
6개월 1.3%
12~36개월 3.2%

 

- OK안심 정기예금(3.3%, 변동금리, 단리/복리, 3년, 예금보호, 일반과세)

 

계산기를 만드는 코드는 아래에.

<!-- 계산기 코드 -->
<table style="height: 63px; width: 100%;" width="100%" cellspacing="1" cellpadding="3" bgcolor="#707070" data-ke-align="alignLeft">
<tbody>
<tr style="height: 21px;">
<td style="height: 21px;" bgcolor="#E7E7E7" width="30%">예치금액</td>
<td style="height: 21px;" bgcolor="#FFFFFF"><input id="money" class="money" maxlength="20" size="20" type="text" value="" />원</td>
</tr>
<tr style="height: 21px;">
<td style="height: 21px;" bgcolor="#E7E7E7">예치기간</td>
<td style="height: 21px;" bgcolor="#FFFFFF"><input id="month" class="money" maxlength="20" size="20" type="text" value="" />개월</td>
</tr>
<tr style="height: 21px;">
<td style="height: 21px;" bgcolor="#E7E7E7">이자율</td>
<td style="height: 21px;" bgcolor="#FFFFFF"><input id="rate" class="money" maxlength="20" size="20" type="text" value="" />%<select id="type">
<option value="1">단리</option>
<option value="2">월복리</option>
</select></td>
</tr>
<tr style="height: 21px;">
<td style="height: 21px;" bgcolor="#E7E7E7">이자</td>
<td style="height: 21px;" bgcolor="#FFFFFF"><input id="result" class="money" maxlength="20" size="20" type="text" value="계산버튼을 누르세요." />원</td>
</tr>
</tbody>
</table>
<div style="margin: 5px 0px 5px 0px;">
<div style="float: left;"><input type="button" value="계산하기" onclick="cal()"/>
<script>
  function cal(){
  
  var money = document.getElementById('money');
  var month = document.getElementById('month');
  var rate = document.getElementById('rate');
  var type = document.getElementById('type');
    var result;
    if(type.value=="1"){result = money.value*rate.value/100*(month.value/12);}else{alert('준비중입니다');}
    document.getElementById('result').value = result;
    

                                     
  }
</script>
</div>
</div>
반응형