11

可能重复:
switch case 中的 JavaScript 或表达式

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

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

4

2 回答 2

37

结合案例

case 'att':
case 'at&t':
    window.location.replace('/att-Forms.htm');    
    break;
于 2013-01-08T18:37:04.290 回答
13

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

case "att":
case "at&t":
    window.location.replace("/att-Forms.htm");
    break;
于 2013-01-08T18:37:27.310 回答