case 'att':
window.location.replace('/att-Forms.htm');
break;
case 'at&t':
window.location.replace('/att-Forms.htm');
break;
有没有办法用某种“或”函数来缩短它?
答案 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;