代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>个人存款计算器</title>
<link rel="shortcut icon" href="img/logo.png" type="image/x-icon">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script>
function calc () {
num1 = $("#num1").val();
RegExp = /^[0-9]{1,8}$/;
if (!RegExp.test(num1)) {
$("#num1").val("必须是1-8位数字!").css("color","red");
return;
}
num1 = parseInt(num1);
year = $("#year option:selected").text();
if (year == "二年") {
num2 = $("#year").val() * num1 *2;
}
if (year == "三年") {
num2 = $("#year").val() * num1 *3;
}
if (year == "五年") {
num2 = $("#year").val() * num1 *5;
}
if (year == "一年") {
num2 = $("#year").val() * num1 *1;
}
// year = $("#year").val();
// num2 = num1 * year;
$("#num2").val(num2)
total = num1 + num2;
$("#num3").val(total);
// alert($("#year option:selected").text());
}
function clearnum1 () {
$("#num1").val().css("color","");
}
</script>
</head>
<body>
<div style="width: 50%;" class="text-center center-block">
<div>
<img src="img/cmb.png" alt="">
</div>
<table class="table table-bordered">
<tr class="bg-primary">
<td colspan="2">个人存款计算</td>
</tr>
<tr>
<td class="text-right">存款金额</td>
<td>
<input onfocus="clearnum1" class="form-control" type="text" id="num1">
</td>
</tr>
<tr>
<td class="text-right">存款期限</td>
<td>
<select class="form-control" id="year">
<option value="0.0175">一年</option>
<option value="0.0225">二年</option>
<option value="0.0275">三年</option>
<option value="0.0275">五年</option>
</select>
</td>
</tr>
<tr>
<td class="text-right">所得利息</td>
<td>
<input readonly="readonly" class="form-control" type="text" id="num2">
</td>
</tr>
<tr>
<td class="text-right">本金合计</td>
<td>
<input readonly="readonly" class="form-control" type="text" id="num3">
</td>
</tr>
<tr>
<td colspan="2">
<button onclick="calc()" class="btn btn-primary btn-block">开始计算</button>
</td>
</tr>
</table>
<div>
开发者:182055140 吴政
</div>
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。