我學習了java和php多年,最近剛剛開始使用JavaScript進行開發。無論如何,一個相當不錯的問題,但任何人都可以找出爲什麼這個應用程序沒有顯示按鈕被點擊時的興趣?我一直在使用w3schools網站來學習。Javascript中的算術表達式
代碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Interest Calculator</title>
</head>
<body>
<fieldset>
<legend>Interest Calculator</legend>
Enter amount: <input type="text" id="amount" ><br><br>
Interest rate: <input type="text" id="interest"><br><br>
Enter years: <input type="text" id="years"><br><br>
<button onclick="calculate()">Calculate</button>
</fieldset>
<p id="sum"></p>
<script>
function calculate(){
var amount = document.getElementById("amount").value;
var rate = document.getElementById("interest").value;
var years = document.getElementById("years").value;
var sum = amount(1+rate)^years;
var message = "Your total return will be: " + sum;
document.getElementById("sum").innerHTML = message;
}
</script>
</body>
</html>
非常感謝,
亞當
更換
var sum = amount(1+rate)^years;
不要使用'w3schools'。有關更多信息,請參閱http://w3fools.com。 –我會在這裏出現一個肢體,並且猜測這是'amount'不是一個函數,而是一個字符串? – adeneo
我在哪裏申報金額作爲函數? – user3918443