gpt4 book ai didi

javascript - 如何在 Javascript 中比较两个变量?

转载 作者:行者123 更新时间:2023-12-01 02:15:53 25 4
gpt4 key购买 nike

我试图比较两个不同的变量,如果它们匹配则执行某些代码。变量是:userInput 和 commandOne

首先,按下按钮来调用 myTest()。

function myTest() {
userInput = document.getElementById("runBox").value;
testInput();
}

该函数从我的页面上的输入框中收集文本并将其存储在名为 userInput 的变量中。然后它调用我的下一个函数...

function testInput() {
if (userInput = commandOne) {
document.getElementById("demo").innerHTML += "<br>executed!";
}else {
alert("this is an alert message");
}
}

这部分旨在测试 userInput 是否与名为 commandOne 的变量匹配。 (commandOne 的值当前设置为“ip”)。

如果匹配,它将向具有“demo”ID 的段落添加文本(已执行!)。如果不匹配,则会在警告框中提醒用户。

我的问题是变量似乎没有进行比较。无论用户在 userInput 中输入什么内容,文本(已执行!)总是输出到我的段落中。浏览器似乎认为它们匹配,但实际上并不匹配。

最佳答案

您在 if 语句中错过了运算符。

if (userInput == commandOne)

== 比较值

if (userInput === commandOne)

=== 比较值和数据类型。

关于javascript - 如何在 Javascript 中比较两个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49504135/

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