<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语句

        Switch statement for multiple cases in JavaScript(JavaScript中多个case的switch语句)
        • <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语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Pause youtube video, youtube api(暂停 youtube 视频,youtube api)
                  Youtube iframe api not triggering onYouTubeIframeAPIReady(Youtube iframe api 未触发 onYouTubeIframeAPIReady)
                  How can I stop a video with Javascript in Youtube?(如何在 Youtube 中停止使用 Javascript 的视频?)
                  How to call Greasemonkey#39;s GM_ functions from code that must run in the target page scope?(如何从必须在目标页面范围内运行的代码中调用 Greasemonkey 的 GM_ 函数?)
                  How do you mute an embedded Youtube player?(如何使嵌入式 Youtube 播放器静音?)
                  How to get number of video views with YouTube API?(如何使用 YouTube API 获取视频观看次数?)

                    • <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>
                            <tbody id='qwqf6'></tbody>

                          • <small id='qwqf6'></small><noframes id='qwqf6'>