我一直在編碼計算器,但有些東西不起作用。我一直得到錯誤:如何調試JavaScript錯誤「Uncaught ReferenceError:number is not defined」?
Uncaught ReferenceError: number is not defined
這裏是我的代碼:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
alert("Calculator by Pavel (Dont block these popups, this website uses them)")
var a,b,result;
function setValues()
{
a=number(document.getElementById("a").value);
b=number(document.getElementById("b").value);
}
function sum()
{
setValues();
result= a+b;
alert("The answer is"+result);
}
</script>
</head>
<body>
<div>
<input id="a" type="text"/>
<input id="b" type="text"/>
<input type="button" onclick="sum()" value="sum"/>
</div>
</body>
</html>
當然你明白了。我沒有在任何地方看到一個'number()'聲明...... – Aify
謝謝你試圖幫助,但我已經得到了我的答案,我的帽子和小寫字母都有錯誤,所以下次我會注意這些錯誤。 – Pavel