网页制作,,,公式计算器

发布网友 发布时间:2022-04-25 20:15

我来回答

1个回答

热心网友 时间:2022-06-17 02:22

我做了个简单的 你先拿去用吧。
把代码粘贴到html文件里面就好了。
纯手打的 望采纳。
——————————————————代码—————————————————
<html>
<head>
<title>Caculator</title>
</head>
<body>
<table>
<tr>
<td>单价:</td><td><input type="text" id="sPrice" value="" /></td>
</tr>
<tr>
<td>数量:</td><td><input type="text" id="Num" value=""/></td>
</tr>
<tr>
<td>总价:</td><td><input type="text" id="TPrice" value=""/></td>
</tr>
<tr>
<td><input type="button" id="cacul" value="计算" onclick="cal();"/></td>
</tr>
</table>
</body>
<script type="text/javascript">
function cal(){
var sPrice = document.getElementById('sPrice').value;
var Num = document.getElementById('Num').value;
var TPrice= document.getElementById('TPrice').value;
if(sPrice!=''&&Num!=''){
TPrice = sPrice*Num;
document.getElementById('TPrice').value = TPrice;
}
if(Num==0&&TPrice!=''){
alert('除数不能为零!');
}
if(TPrice!=''&&Num!=''&&Num!=0){
sPrice = TPrice/Num;
document.getElementById('sPrice').value = sPrice;
}

}
</script>
</html>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com