gpt4 book ai didi

javascript - 多个 if-else 不起作用

转载 作者:行者123 更新时间:2023-11-28 19:56:16 24 4
gpt4 key购买 nike

var x = prompt("number between 50 and 100");

if (x.match(/hi/)) {
alert("cool");
} else {
alert("neni cool");
} else if (x==50 || x==100) {
alert("skevele");
} else {
alert("nic");
}

任何人都可以解释为什么其他方法不起作用吗?感谢您的回答。

最佳答案

你不能这样堆叠它们。 }else{ 语句只是 if/then/else 语句中的最后一个情况,因为它仅在其他情况没有执行时才执行。

if(condition){
what to do
}else if(condition 2){
what to do if the first condition was not met
}else{
if all else fails
}

关于javascript - 多个 if-else 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22492697/

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