gpt4 book ai didi

javascript - 多个 if 语句的替代方案

转载 作者:行者123 更新时间:2023-11-29 17:20:55 25 4
gpt4 key购买 nike

我的代码包含很多多个 if 语句。有没有其他方法可以摆脱这些陈述。例如假设我有以下条件

if(t1 >= 1 && t2 == 0 && t3 == 0) $('div.b_class').fadeIn();
if(t1 == 0 && t2 >= 1 && t3 == 0) $('div.c_class').fadeIn();
if(t1 == 0 && t2 == 0 && t3 == 1) $('div.d_class').fadeIn();
if(t1 && t2 >= 1 && t3 == 0) $('div.b_class.c_class').fadeIn();
if(t1 && t3 >= 1&& t2 == 0) $('div.b_class.d_class').fadeIn();

有什么办法可以简化这些语句吗?

最佳答案

你可以像这样使用带有条件的 switch case 结构:

switch(true)
{
case (t1 >= 1 && t2 == 0 && t3 == 0) : $('div.b_class').fadeIn(); break;
case (t1 == 0 && t2 >= 1 && t3 == 0) : $('div.c_class').fadeIn(); break;
case (t1 == 0 && t2 == 0 && t3 == 1) : $('div.d_class').fadeIn(); break;
case (t1 && t2 >= 1 && t3 == 0) : $('div.b_class.c_class').fadeIn(); break;
case (t1 && t3 >= 1&& t2 == 0) : $('div.b_class.d_class').fadeIn(); break;
}

关于javascript - 多个 if 语句的替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12984191/

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