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

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

      • <bdo id='S3w2d'></bdo><ul id='S3w2d'></ul>

        测试开关中的多个案例,例如 OR (||)

        时间:2023-09-07
          <tbody id='zokVW'></tbody>
            <tfoot id='zokVW'></tfoot>

              <legend id='zokVW'><style id='zokVW'><dir id='zokVW'><q id='zokVW'></q></dir></style></legend>
            1. <small id='zokVW'></small><noframes id='zokVW'>

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

              • <bdo id='zokVW'></bdo><ul id='zokVW'></ul>
                  本文介绍了测试开关中的多个案例,例如 OR (||)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  当你需要测试 a or b 时,你会如何使用 switch case 同样的情况?

                  How would you use a switch case when you need to test for a or b in the same case?

                  switch (pageid) {
                    case "listing-page" || "home-page":
                      alert("hello");
                      break;
                    case "details-page":
                      alert("goodbye");
                      break;
                  }
                  

                  推荐答案

                  你可以使用fall-through:

                  You can use fall-through:

                  switch (pageid)
                  {
                      case "listing-page":
                      case "home-page":
                          alert("hello");
                          break;
                      case "details-page":
                          alert("goodbye");
                          break;
                  }
                  

                  这篇关于测试开关中的多个案例,例如 OR (||)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:我可以使用带有两个变量的 case/switch 语句吗? 下一篇:带有逻辑运算符的 JavaScript 开关?

                  相关文章

                  <tfoot id='q5cuA'></tfoot>
                  • <bdo id='q5cuA'></bdo><ul id='q5cuA'></ul>
                  <legend id='q5cuA'><style id='q5cuA'><dir id='q5cuA'><q id='q5cuA'></q></dir></style></legend>

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

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