gpt4 book ai didi

javascript - 减法不适用于变量

转载 作者:行者123 更新时间:2023-11-30 07:24:25 26 4
gpt4 key购买 nike

我不明白为什么数字变量的减法不起作用。我的代码如下。

function Check() {
var Viewer = document.getElementById("Viewer");
var TrysLeft = 3;
if (Viewer.value == Num) {
alert("Correct");
} else {
TrysLeft - 1;
alert("Sorry you got the combo wrong! You have " + TrysLeft + " Trys left before the combo is reset");
}
}

最佳答案

您将 var TrysLeft = 3; 作为局部变量。每次您调用该函数时,它都会将其重新初始化为 3。

在减去它之后,您也没有将 TrysLeft 分配给任何东西。您可以执行 TrysLeft--;TrysLeft = TrysLeft -1;

关于javascript - 减法不适用于变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22185772/

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