0

我有一个 if 语句,我想检查它是否是这些字符串之一以及它是否为空,但我不知道如何正确表达它。这是基本的,但我不知道如何在谷歌上说这个。非常感谢!

if(condition1 == "string" || condition2 == "string" && is empty){
    do this
}
4

2 回答 2

0

编辑:更新参考您的 jsFiddle

//object drill down
var colField = evt.cell.field; //this gives me the column names of the grid in dojo
var mystring = item[colField] || ""; // gets item based on colField property
var fields = ["Owner", "Home", "Realtor", "Broker"]; // fields to check colField against

//here is the conditional statement. if column Owner, Home, Realtor or Broker property is empty in that object do the following
if(fields.indexOf(colField) !== -1 && mystring === "") {

}

更新了 jsFiddle:http: //jsfiddle.net/3AXN7/4/

由于您要检查的列超过两列,因此将所有列名放在一个数组中,然后检查 colField 是否在数组中,而不是将所有这些条件放在 if 语句中,这样会更加清晰和可维护.

唯一的问题是 IE6-8 不支持 indexOf。如果要确保这适用于所有浏览器,则需要提供 indexOf 的默认实现。您可以使用以下代码执行此操作:

if (!Array.prototype.indexOf) {
  Array.prototype.indexOf = function (searchElement /*, fromIndex */) {
    "use strict";

    if (this === void 0 || this === null)
      throw new TypeError();

    var t = Object(this);
    var len = t.length >>> 0;
    if (len === 0)
      return -1;

    var n = 0;
    if (arguments.length > 0) {
      n = Number(arguments[1]);
      if (n !== n)
        n = 0;
      else if (n !== 0 && n !== (1 / 0) && n !== -(1 / 0))
        n = (n > 0 || -1) * Math.floor(Math.abs(n));
    }

    if (n >= len)
      return -1;

    var k = n >= 0
          ? n
          : Math.max(len - Math.abs(n), 0);

    for (; k < len; k++) {
      if (k in t && t[k] === searchElement)
        return k;
    }

    return -1;
  };
}
于 2013-01-07T22:32:54.837 回答
0
if((typeof condition1 == 'string' && condition1.length == 0) || (typeof condition2 == 'string' && condition2.length == 0))

将其分解,(typeof condition1 == 'string' && condition1.length == 0)只需检查变量是否为字符串且长度为 0。如果计算结果为 false,它将检查 condition2 是否为字符串且长度为 0。如果任一语句为 true,则 if 语句将返回真。

于 2013-01-07T22:11:20.583 回答