gpt4 book ai didi

javascript - 我可以在一个变量中有多个值吗?

转载 作者:太空狗 更新时间:2023-10-29 16:06:40 27 4
gpt4 key购买 nike

正如标题“我可以在一个变量中有多个值吗?”

首先,我有这个表格:

<form name="myform">
<input type="text" name="mytext">
<input type="button" onClick="clickButton()">
</form>

然后,看看我的脚本。

<script>
function clickButton() {
var x = document.myform.mytext.value;
var a = 13;
var b = 17;
var c = 19;

if (x == a) {
alert('hello');
} else if (x == b) {
alert('hello');
} else if (x == c) {
alert('hello');
} else {
alert('goodbye');
}
}
</script>

有没有办法让一个变量具有多个值?比如,var myvalues=1,2,3;

最佳答案

对您问题的正确回答是使用 array .但是从您尝试做的事情来看,您似乎在寻找 object ,特别是 bracket notation :

function clickButton() {
var x = document.myform.mytext.value,
greetings = {
"13": "hello",
"17": "hello",
"19": "hello"
}
alert(greetings[x] || "goodbye");
}
<form name="myform">
<input type="text" name="mytext">
<input type="button" onClick="clickButton()" value="greet">
</form>

关于javascript - 我可以在一个变量中有多个值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27578472/

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