gpt4 book ai didi

javascript - 如果输入 a 或 b 正确/正确,我如何执行操作?

转载 作者:行者123 更新时间:2023-11-28 03:21:40 33 4
gpt4 key购买 nike

用户在我的输入栏中写入“足球”,然后执行第 6 行和第 7 行的操作。
但如果用户用大写字母写“Football”怎么办?我试图实现“逻辑或” ||但我无法让它工作。

var input = document.getElementById("user_input");
let footballTeams = ["Manchester","Barcelona","Copenhagen"]

if (input.value == "football") {
alert("These cities have football teams:" +
"\n" + footballTeams[0] + "," + " " + footballTeams[1] + "," + " " + footballTeams[2])

最佳答案

试试这个:

if (input.value.toLowerCase() == "football")

关于javascript - 如果输入 a 或 b 正确/正确,我如何执行操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59106883/

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