我是一个菜鸟,我有一个问题,想弄清楚如何使用其他如果
到目前为止,我得到了什么,它对我有用.. var name = "mom"
var name = "dad"
name = prompt("what is your name?");
if (name = "mom"){
alert("Hello Mother." );
} if (name = "dad"){
alert("hello father." );
}
答案 0 :(得分:0)
你应该在你的问题上使用正确的标签,否则你不清楚你所使用的语言。但它看起来像JavaScript,所以试试这个:
var name = prompt("what is your name?");
if (name == "mom"){
alert("Hello Mother.");
} else if (name == "dad"){
alert("hello father.");
} else {
alert("hello stranger.");
}
请注意,您需要==
来比较值。单个=
是一项任务。如果您不清楚这些区别,请考虑遵循网络上提供的众多JavaScript教程之一。
答案 1 :(得分:0)
这不是正确的方法,但你可以使用不同的变量
var mom ="mom";
var dad = "dad";
var name = prompt("What is your name");
if(name == mom) {
alert("Hello mother.");
} else {
alert("Hello father.")
}
答案 2 :(得分:0)
我认为这就是你想要的......(JavaScript)
var name = prompt("what is your name?");
if(name == "mom"){
alert ("Hello Mother." );
}
else if(name == "dad"){
alert ("hello father." );
}
else{
alert ("Your name is not recognised");
}