if语句可以有多个执行吗?

时间:2017-04-24 14:20:53

标签: javascript if-statement execution multiple-results

基本上,我想拥有它以便

if(condition) {"do this" || "do that"};

具体来说,我知道如果将特定div设置为特定颜色(从数组中随机选取),则其他4个div中的1个将其颜色更改为特定颜色。

谢谢!

编辑: 我想我更想知道我是否可以随机选择'然后'声明。我正在制作游戏,所以我想避免选择我想要获得新颜色的4个div中的哪一个(这意味着每个实例每次都编写相同的脚本)

2 个答案:

答案 0 :(得分:1)

if语句可以有很多执行。尽你所愿。 您可以做的是使用multiple if if in one if语句来选择正确的div或使用开关代替。例如:

var array = [3, 4, 1, 2];

注意 在我随机选择

之前,我所做的是将数组混合在一起,混合索引
var my_array = array.sort(); // This will change your array, for example, from [3, 4, 1, 2] to [1, 2, 3, 4].
or 
var my_array = array.reverse(); // This will change your array, for example, from [3, 4, 1, 2] to [4, 3, 2, 1].

var random_condition = Math.floor((Math.random() * 3)); // select at random from 0 to 3 because the array is ZERO based

然后你做你的logc:

if(condition) {
    if (random_condition == 1 ) {
        "do this" with div 1 // array [0] == 1
    }
    else if (random_condition == 2 ) {
        "do this" with div 2 // array [1] == 2
    }
    else if (random_condition == 3 ) {
        "do that" with div 3 // array [2] == 3
    }
    else if (random_condition == 4 ) {
        "do that" with div 4 // array [3] == 4
    }
}

或使用开关

if(condition) {
    switch (random_condition) {
        CASE '1':
            "do this" with div 1 // array [0] == 1
            break;
        CASE '2':
            "do this" with div 2 // array [1] == 2
            break;
        CASE '3':
            "do this" with div 3 // array [2] == 3
            break;
        CASE '':
            "do this" with div 4 // array [3] == 4
            break;
        default
            // do nothing
            break;
    }
}

答案 1 :(得分:0)

可以在一个区块中执行多项操作(由{}包围),但只需

if(condition) {
 console.log("either do this"); 
 console.log("and do that");
} else {
 console.log("or do this"); 
 console.log("and this as well");
}

或'||'像在例如这里不使用shell脚本javascript。

else部分可以再次拆分,例如

if (c1) {
} elseif (c2) {
} else {
}

如果您愿意,可以重复一遍。

你也可以骰子:

function dice() {
    return Math.floor(Math.random() * 6 + 1);
}

然后只做一个具有正确数字的元素:

getElementById("div"+dice()).innerHtml = "changed";