我是新來的Javascript,我跟着一個簡單的教程來創建一個新手計算器,但我無法得到它的工作,不明白爲什麼不。似乎無法得到onclick工作,javascript
它應該在警告框中顯示結果,而不是。
任何幫助/輸入是非常讚賞,
謝謝
<script type="text/javascript">
var a,b, result;
funciton setValues()
{
a = Number(document.getElementById("a").value);
b = Number(document.getElementById("b").value);
}
function sum() {
setValues();
result = a+b;
alert("The sume is equel to "+result);
}
function rest()
{
setValues();
result = a-b;
alert("The result is equal to "+result);
}
function mult()
{
setValues();
result = a*b;
alert ("The result is equal to "+result);
}
function div()
{
setValues();
result = a/b;
alert ("The result is equal to "+result);
}
</script>
</head>
<body>
<div>
<input id="a" type="text"/>
<input id="b" type="text"/>
<button type="button" onclick="sum()">+</button>
<button type="button" onclick="rest()">-</button>
<button type="button" onclick="mult()"> *</button>
<button type="button" onclick="div()"> /</button>
</div>
</body>
您的問題是什麼? – SLaks
注意到你有'onlcick'而不是'onclick' – JoseTeixeira
對不起,我想要幫助/輸入爲什麼計算器的結果不顯示在警告框中,因爲他們應該。 – meztli