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

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

      1. <tfoot id='yUfSv'></tfoot>
      2. <small id='yUfSv'></small><noframes id='yUfSv'>

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

        带条件的开关盒

        时间:2023-09-07

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

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

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

                • <tfoot id='GiQ1h'></tfoot>

                    <tbody id='GiQ1h'></tbody>

                • <legend id='GiQ1h'><style id='GiQ1h'><dir id='GiQ1h'><q id='GiQ1h'></q></dir></style></legend>
                  本文介绍了带条件的开关盒的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我是否编写了带有条件的正确 switch 案例?

                  Am I writing the correct switch case with conditions?

                  var cnt = $("#div1 p").length;
                  alert(cnt);
                  
                  switch (cnt) {
                    case (cnt >= 10 && cnt <= 20):
                      alert('10');
                      break;
                    case (cnt >= 21 && cnt <= 30):
                      alert('21');
                      break;
                    case (cnt >= 31 && cnt <= 40):
                      alert('31');
                      break;
                    default:
                      alert('>41');
                  }
                  

                  由于某种原因,条件匹配时没有发生警报!

                  For some reason, the alert does not occur when the conditions are matched!

                  推荐答案

                  您不应该在这种情况下使用 switch.这是正确的方法:

                  You should not use switch for this scenario. This is the proper approach:

                  var cnt = $("#div1 p").length;
                  
                  alert(cnt);
                  
                  if (cnt >= 10 && cnt <= 20)
                  {
                     alert('10');
                  }
                  else if (cnt >= 21 && cnt <= 30)
                  {
                     alert('21');
                  }
                  else if (cnt >= 31 && cnt <= 40)
                  {
                     alert('31');
                  }
                  else 
                  {
                     alert('>41');
                  }
                  

                  这篇关于带条件的开关盒的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:切换/切换 div (jQuery) 下一篇:“开关"的替代方案陈述

                  相关文章

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

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

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