我如何结合多个案例?

时间:2013-01-08 18:36:32

标签: javascript case

  

可能重复:
  JavaScript or-expression in a switch case

case 'att':
   window.location.replace('/att-Forms.htm');
   break;
case 'at&t':
   window.location.replace('/att-Forms.htm');    
   break;

有没有办法用某种“或”函数来缩短它?

2 个答案:

答案 0 :(得分:23)

结合案例

case 'att':
case 'at&t':
    window.location.replace('/att-Forms.htm');    
    break;

答案 1 :(得分:10)

一个接一个地放置case语句:

case "att":
case "at&t":
    window.location.replace("/att-Forms.htm");
    break;