gpt4 book ai didi

javascript - 如何让我的程序检查按下的键是否在选定的单词中

转载 作者:行者123 更新时间:2023-11-30 16:04:05 25 4
gpt4 key购买 nike

我正在开发一个刽子手游戏,我正在检查用户通过使用按键猜测的字母是否在随机选择的谚语中。但它总是给我“是的,它在说法中”或“不,它不在说法中”的答案,无论这封信是否真的在说法中。非常感谢任何帮助。谢谢。

这是我目前正在使用的代码。

document.addEventListener("keydown", function textFunction(event)
{
if (event.keyCode > 64 && event.keyCode < 91)
{
var guess = event.keyCode;
var a = "a";
var letterGuess = String.fromCharCode(event.keyCode);
if(sayings[randomSaying].contains(guess)){
alert("yes");
} else {
alert("no");
}
alert(String.fromCharCode(event.keyCode));
}
else
{
alert("Please type a letter");
}
});

和随机选择的说法

var sayings = [
"cash on the nail",
"charley horse",
"double cross",
"fit as a fiddle",
"hands down",
"if the cap fits",
"mumbo jumbo",
"see red",
"stone the crows",
"thick and thin",
]
sayings.toString();
var randomSaying = Math.floor(Math.random()*sayings.length);

最佳答案

String.fromCharCode(event.keyCode); 默认返回大写字母。因此,您永远不会匹配。

编辑:澄清一下,提供的 keyCodes 是大写字母,因此 String.fromCharCode 默认总是返回大写字母。

关于javascript - 如何让我的程序检查按下的键是否在选定的单词中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37284636/

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