gpt4 book ai didi

javascript - 用3个字段进行计算

转载 作者:行者123 更新时间:2023-11-28 19:57:15 26 4
gpt4 key购买 nike

对于这个菜鸟问题,我提前表示歉意,但我需要创建一个具有 3 个字段(2 个输入和 1 个输出)的计算器。

这是我已经尝试过的:

<html>


<body>
<FORM>
<script>
function optellen()
{
var Getal1 = document.getElementById('getal1').value;
var Getal2 = document.getElementById('getal2').value;
var Getal3 = (parseInt(Getal1) + parseInt(Getal2);

document.getElementById("output").value = Getal3;
}
</script>


<INPUT TYPE="text" id="getal1" Size="22">

<INPUT TYPE="text" id="getal2" Size="22">

<br>

<button onclick="optellen();">optellen</button>
<button> aftrekken </button>
<button> delen </button>
<button> vermeningvuldigen </button>

<br>

<INPUT TYPE="text" id="output" Size="50">
</FORM>


</body>
</html>

最佳答案

您的变量中有未闭合的括号:

改变

var Getal3 = (parseInt(Getal1) + parseInt(Getal2); 

var Getal3 = (parseInt(Getal1) + parseInt(Getal2)); 

如果您想在表单提交后留在页面中(可能是),请将 return false; 添加到您的函数中,正如 @dejakob 在他的回答中所说。

关于javascript - 用3个字段进行计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22326858/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com