gpt4 book ai didi

javascript - 添加按钮在 javascript 中不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:24:08 24 4
gpt4 key购买 nike

我用 javascript 做了一个简单的计算器,但是 + 按钮不起作用,它只显示靠近的数字

这是我的代码:

<script>
function calc(operator) {
var x = document.getElementById("inp1").value;
var y = document.getElementById("inp2").value;
var z = 0;

switch (operator) {
case "+":
z = x + y;
break;
case "-":
z = x - y;
break;
case "*":
z = x * y;
break;
case "/":
z = x / y;
break;
}
document.getElementById("result").innerHTML=z;
}
</script>

最佳答案

你可以这样使用:

z= +x + +y; // + is prefixed to convert input into number

关于javascript - 添加按钮在 javascript 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25617720/

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