<!DOCTYPE html>
<html>
<head>
<title>Простой калькулятор</title>
</head>
<body>
<input type = "text" id = "forCalculate">
<input type = "button" value = "Вычислить" id = "run">
<input type = "text" id = "result" disabled>
<script>
function gid(id) {
return document.getElementById(id);
}
gid("run").onclick = function() {
var res, errMsg = "Ошибка";
try {
res = eval(gid("forCalculate").value)
} catch(e) {
res = errMsg;
}
if(isNaN(+res)) res = errMsg;
gid("result").value = res;
}
</script>
</body>
</html>
В лом писать много, предлагаю простой вариант.