个人存款计算器_第1页
个人存款计算器_第2页
个人存款计算器_第3页
个人存款计算器_第4页
个人存款计算器_第5页
已阅读5页,还剩6页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

附录1 附录2 个人存款计算器 jsp源代码个人存款计算器function perSaving() var amount=document.per_form.amountTextBox.value var yrate=document.per_form.yRateTextBox.value var term=document.per_form.termTextBox.value if (amount=“) alert(“请输入存款金额!“) document.per_form.amountTextBox.focus() window.event.returnValue = false; return if (yrate=“) alert(“请输入年利率或选择期限种类!“) document.per_form.yRateTextBox.focus() window.event.returnValue = false;return if (term=“) alert(“请输入存期!“) document.per_form.termTextBox.focus() window.event.returnValue = false;return if(isNaN(amount) alert(“请输入数字!“) document.per_form.amountTextBox.focus()window.event.returnValue = false;return if(isNaN(yrate) alert(“请输入数字!“) document.per_form.yRateTextBox.focus() window.event.returnValue = false;return if(isNaN(term) alert(“请输入数字!“) document.per_form.termTextBox.focus()window.event.returnValue = false;return var taxrate=0.00;var interest=amount*yrate*term*0.01/12var tax=taxrate*amount*yrate*term*0.01/12var result=amount*(1+(1-taxrate)*yrate*term*0.01/12) interest=Math.round(interest*100) interest=interest/100 interest=interest+“ document.per_erestTextBox.value=interesttax=Math.round(tax*100) tax=tax/100 tax=tax+“ document.per_form.taxTextBox.value=tax result=Math.round(result*100) result=result/100 result=result+“ document.per_form.resultTextBox.value=result window.event.returnValue = false; function checkTerm()var during=document.per_form.duringDropDownlist.valuevar currencyDropDownList=document.per_form.currencyDropDownList.valueif(currencyDropDownList=“人民币“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.5000“;if(during=“通知存款 一天“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.9500“;if(during=“通知存款 七天“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“1.4900“;if(during=“整存整取三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“3.1000“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“3.3000“;if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“3.5000“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“4.4000“;if(during=“整存整取 三年“)document.per_form.termTextBox.value =“36“;document.per_form.yRateTextBox.value=“5.0000“;if(during=“整存整取 五年“)document.per_form.termTextBox.value =“60“;document.per_form.yRateTextBox.value=“5.5000“;if(during=“零存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“3.1000“;if(during=“零存整取 三年“)document.per_form.termTextBox.value =“36“;document.per_form.yRateTextBox.value=“3.3000“;if(during=“零存整取 五年“)document.per_form.termTextBox.value =“60“;document.per_form.yRateTextBox.value=“3.5000“;if(during=“整存零取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“3.1000“;if(during=“整存零取 三年“)document.per_form.termTextBox.value =“36“;document.per_form.yRateTextBox.value=“3.3000“;if(during=“整存零取 五年“)document.per_form.termTextBox.value =“60“;document.per_form.yRateTextBox.value=“3.5000“;if(during=“零存零取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“3.1000“;if(during=“零存零取 三年“)document.per_form.termTextBox.value =“36“;document.per_form.yRateTextBox.value=“3.3000“;if(during=“零存零取 五年“)document.per_form.termTextBox.value =“60“;document.per_form.yRateTextBox.value=“3.5000“;if(during=“存本取息 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“3.1000“;if(during=“存本取息 三年“)document.per_form.termTextBox.value =“36“;document.per_form.yRateTextBox.value=“3.3000“;if(during=“存本取息 五年“)document.per_form.termTextBox.value =“60“;document.per_form.yRateTextBox.value=“3.5000“;if(currencyDropDownList=“美元“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.1000“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“0.2500“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“0.5000“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“0.7500“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“1.2500“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“1.2500“; if(currencyDropDownList=“英镑“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.1250“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“0.2180“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“0.8050“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“0.9760“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“1.0760“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“1.0760“; if(currencyDropDownList=“欧元“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.1000“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“0.7500“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“1.0000“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“1.1250“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“1.2500“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“1.3125“; if(currencyDropDownList=“日元“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.0001“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“0.0100“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“0.0100“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“0.0100“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“0.0100“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“0.0100“; if(currencyDropDownList=“港币“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.0200“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“0.1500“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“0.4000“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“0.5000“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“0.8000“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“1.1000“; if(currencyDropDownList=“加拿大元“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.0400“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“0.2165“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“0.3915“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“0.5100“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“0.7315“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“0.7315“; if(currencyDropDownList=“瑞士法郎“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.0001“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“0.0100“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“0.0100“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“0.0100“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.value=“0.0100“;if(during=“整存整取 二年“)document.per_form.termTextBox.value =“24“;document.per_form.yRateTextBox.value=“0.0100“; if(currencyDropDownList=“澳大利亚元“)if(during=“活期“)document.per_form.termTextBox.value =“;document.per_form.yRateTextBox.value=“0.2375“;if(during=“整存整取 一个月“)document.per_form.termTextBox.value =“01“;document.per_form.yRateTextBox.value=“1.2400“;if(during=“整存整取 三个月“)document.per_form.termTextBox.value =“03“;document.per_form.yRateTextBox.value=“1.3875“;if(during=“整存整取 半年“)document.per_form.termTextBox.value =“06“;document.per_form.yRateTextBox.value=“1.5075“; if(during=“整存整取 一年“)document.per_form.termTextBox.value =“12“;document.per_form.yRateTextBox.va

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论