<small id='ucnPk'></small><noframes id='ucnPk'>

  • <i id='ucnPk'><tr id='ucnPk'><dt id='ucnPk'><q id='ucnPk'><span id='ucnPk'><b id='ucnPk'><form id='ucnPk'><ins id='ucnPk'></ins><ul id='ucnPk'></ul><sub id='ucnPk'></sub></form><legend id='ucnPk'></legend><bdo id='ucnPk'><pre id='ucnPk'><center id='ucnPk'></center></pre></bdo></b><th id='ucnPk'></th></span></q></dt></tr></i><div id='ucnPk'><tfoot id='ucnPk'></tfoot><dl id='ucnPk'><fieldset id='ucnPk'></fieldset></dl></div>

    <tfoot id='ucnPk'></tfoot>

  • <legend id='ucnPk'><style id='ucnPk'><dir id='ucnPk'><q id='ucnPk'></q></dir></style></legend>

          <bdo id='ucnPk'></bdo><ul id='ucnPk'></ul>

        JavaScript中多个case的switch语句

        时间:2023-09-07
        • <small id='8jQTa'></small><noframes id='8jQTa'>

          <legend id='8jQTa'><style id='8jQTa'><dir id='8jQTa'><q id='8jQTa'></q></dir></style></legend>

            <tfoot id='8jQTa'></tfoot>
            <i id='8jQTa'><tr id='8jQTa'><dt id='8jQTa'><q id='8jQTa'><span id='8jQTa'><b id='8jQTa'><form id='8jQTa'><ins id='8jQTa'></ins><ul id='8jQTa'></ul><sub id='8jQTa'></sub></form><legend id='8jQTa'></legend><bdo id='8jQTa'><pre id='8jQTa'><center id='8jQTa'></center></pre></bdo></b><th id='8jQTa'></th></span></q></dt></tr></i><div id='8jQTa'><tfoot id='8jQTa'></tfoot><dl id='8jQTa'><fieldset id='8jQTa'></fieldset></dl></div>
            • <bdo id='8jQTa'></bdo><ul id='8jQTa'></ul>

                    <tbody id='8jQTa'></tbody>
                  本文介绍了JavaScript中多个case的switch语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要在 JavaScript 中的 switch 语句中使用多个案例,例如:

                  I need multiple cases in switch statement in JavaScript, Something like:

                  switch (varName)
                  {
                     case "afshin", "saeed", "larry":
                         alert('Hey');
                         break;
                  
                     default:
                         alert('Default case');
                         break;
                  }
                  

                  我该怎么做?如果没有办法在 JavaScript 中做类似的事情,我想知道一个替代解决方案,它也遵循 DRY 概念.

                  How can I do that? If there's no way to do something like that in JavaScript, I want to know an alternative solution that also follows the DRY concept.

                  推荐答案

                  使用 switch 语句的贯穿功能.匹配的 case 将一直运行,直到找到 break(或 switch 语句的结尾),所以你可以这样写:

                  Use the fall-through feature of the switch statement. A matched case will run until a break (or the end of the switch statement) is found, so you could write it like:

                  switch (varName)
                  {
                     case "afshin":
                     case "saeed":
                     case "larry": 
                         alert('Hey');
                         break;
                  
                     default: 
                         alert('Default case');
                  }
                  

                  这篇关于JavaScript中多个case的switch语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:“new &lt;function&gt;"后面的括号选修的? 下一篇:大于/小于的 switch 语句

                  相关文章

                  1. <tfoot id='qwqf6'></tfoot>
                    <i id='qwqf6'><tr id='qwqf6'><dt id='qwqf6'><q id='qwqf6'><span id='qwqf6'><b id='qwqf6'><form id='qwqf6'><ins id='qwqf6'></ins><ul id='qwqf6'></ul><sub id='qwqf6'></sub></form><legend id='qwqf6'></legend><bdo id='qwqf6'><pre id='qwqf6'><center id='qwqf6'></center></pre></bdo></b><th id='qwqf6'></th></span></q></dt></tr></i><div id='qwqf6'><tfoot id='qwqf6'></tfoot><dl id='qwqf6'><fieldset id='qwqf6'></fieldset></dl></div>
                        <bdo id='qwqf6'></bdo><ul id='qwqf6'></ul>

                      <legend id='qwqf6'><style id='qwqf6'><dir id='qwqf6'><q id='qwqf6'></q></dir></style></legend>

                    1. <small id='qwqf6'></small><noframes id='qwqf6'>