简而言之,我必须创建一个计算,输入 4 个数值,然后将其乘以每单位的价格相加,并将税款计算到总数中。我一直在寻找脚本但失败了。
编辑***:我已经根据我阅读和理解的内容编辑了部分代码,但仍然无法让我的函数执行命令并执行带有税的值。
<html>
<head>
<title>Purchase&Tip Calculator</title>
function calculate() {
var total = cost*total;
var cost = document.getElementById("cost").value;
var tax = document.getElementById("tax").value;
total = cost*tax;
document.getElementById("total").value = total;
}
</script>
</head>
<body>
<h1 align="left">Purchase&Tip Calculator</h1>
<input type="text" id="cost" />
<input type="text" id="cost" />
<input type="text" id="cost" />
<input type="text" id="tax" />
<input type="text" id="total" />
<button id="cost" onclick="calculate()" value="Calculate!" />Calculate!</button>
</form>
</body>
</html>