我试图让一个 JavaScript 函数来执行一个与普通 switch 语句(即switch
, case
, break
)不同的 switch 语句,但是我不知道该怎么做。基本上,我想要一个 switch 语句来继续评估这些案例而不会中断,直到它结束。IE
function AddData(cell,totalCell) {
var total = 0;
switch (cell) {
case "AUT":
total = totalCell;
case "FRA":
total = total + totalCell;
case "DEU":
total = total + totalCell;
case "GRC":
total = total + totalCell;
case "SVK":
total = total + totalCell;
break;
}
return total;
}
仅供参考,这与 Google 电子表格一起使用。
非常感谢您提供的任何帮助!
编辑:我希望像这样调用 AddData 函数:AddData(A:A,B:B)
在看起来像这样的电子表格上:
AUT 3.4
FRA 3.3
ITA 4.7
SWE 3.0
FRA 1.1
FRA 3.7
LVA 5.2
在上述情况下,我希望输出为11.5
我希望这有帮助。