我是javascript的新手。我正在使用警报选项来显示地图图层。如果alert选项为true,则必须显示4个图层。否则它必须显示2层。
尝试编写优化代码。
现在我将图层显示为if(true){1,2,3,4} else{3,4}
。尝试将优化代码{3,4}
编写为公共图层。
if true{1,2, + common layers} else{display common layers}
。有人
建议我使用代码示例。
答案 0 :(得分:0)
你可以试试这个,
if(true){
// Layer1, Layer2.
}
// Layer3,Layer4.
答案 1 :(得分:0)
switch(icheck){
case true :{1,2}; // no break statement used here
case false: {3,4};
break;
default : //your Operation whatever you want to perform on this.
break;
}
如果您的案例陈述是true
,那么它将执行您的{1,2}
和假案{3,4}
,因为没有使用中断。
如果您的案例陈述是false
,那么它只会执行您的{3,4}
。之后它会断开并离开开关。
我认为这是一个你应该实施的更好的方法。
由于