为了账号安全,请及时绑定邮箱和手机立即绑定

JS里面if else的循环问题?

JS里面if else的循环问题?

繁星coding 2018-11-19 17:13:38
之前写了一个代码 大致的逻辑如下    function control (type) {    if (type == 1){     console.log("功能1");        }else {    console.log("功能2");        }        }因为之前的业务逻辑需求只有功能1 功能2 所以 control(1)的时候就执行功能1 其余的就执行功能2现在更改了需求 需要加一个功能3 因为之前逻辑复杂 不想改之前的逻辑嵌套function control (type) {if (type == 1){ console.log("功能1");}else {console.log("功能2");} if(type == 3){ console.log("功能3");}}control(3);这种情况下功能3 功能2一起执行 怎么样才能只执行功能3不用switch case
查看完整描述

1 回答

?
慕虎7371278

TA贡献1802条经验 获得超4个赞

if(){

}else if{

}else{

}

是这个意思么?

查看完整回答
反对 回复 2018-12-21
  • 1 回答
  • 0 关注
  • 350 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信