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

    2. <tfoot id='QppjD'></tfoot>

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

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

        JavaScript 告诉你命中了哪个条件

        JavaScript tell which condition was hit(JavaScript 告诉你命中了哪个条件)
          <tbody id='mTGd8'></tbody>
          <bdo id='mTGd8'></bdo><ul id='mTGd8'></ul>

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

                <legend id='mTGd8'><style id='mTGd8'><dir id='mTGd8'><q id='mTGd8'></q></dir></style></legend>
                • <i id='mTGd8'><tr id='mTGd8'><dt id='mTGd8'><q id='mTGd8'><span id='mTGd8'><b id='mTGd8'><form id='mTGd8'><ins id='mTGd8'></ins><ul id='mTGd8'></ul><sub id='mTGd8'></sub></form><legend id='mTGd8'></legend><bdo id='mTGd8'><pre id='mTGd8'><center id='mTGd8'></center></pre></bdo></b><th id='mTGd8'></th></span></q></dt></tr></i><div id='mTGd8'><tfoot id='mTGd8'></tfoot><dl id='mTGd8'><fieldset id='mTGd8'></fieldset></dl></div>
                  <tfoot id='mTGd8'></tfoot>
                  本文介绍了JavaScript 告诉你命中了哪个条件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如果我在 JavaScript 中有这样的语句:

                  If I have a statement in JavaScript like:

                  if(!me.a || !me.b || !me.c) {
                       // I want to know which not was matched here
                  }
                  

                  我如何知道在范围内匹配了哪个条件?有没有魔算子?

                  How do I know which conditional was matched inside the scope? Is there any magic operator?

                  推荐答案

                  嗯,一种方法是 && 每个条件的标识符并检查结果.

                  Well, one way is to && an identifier with each condition and check the result.

                  var result = (!me.a && 1) || (!me.b && 2) || (!me.c && 3);
                  
                  if(result) {
                      // if result is 1, then !me.a is true
                      // if result is 2, then !me.b is true and !me.a is false
                      // if result is 3, only !me.c is true
                  }
                  

                  这篇关于JavaScript 告诉你命中了哪个条件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Fetch multiple links inside foreach loop(在 foreach 循环中获取多个链接)
                  Backbone Fetch Request is OPTIONS method(Backbone Fetch Request 是 OPTIONS 方法)
                  Fetch API leaks memory in Chrome(Fetch API 在 Chrome 中泄漏内存)
                  How can I download and save a file using the Fetch API? (Node.js)(如何使用 Fetch API 下载和保存文件?(Node.js))
                  Send blob data to node using fetch, multer, express(使用 fetch、multer、express 将 blob 数据发送到节点)
                  Sending a custom User-Agent string along with my headers (fetch)(发送自定义用户代理字符串以及我的标头(获取))

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

                  1. <legend id='zzrf1'><style id='zzrf1'><dir id='zzrf1'><q id='zzrf1'></q></dir></style></legend>
                            <tbody id='zzrf1'></tbody>

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

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

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