判断一个数组为[]或者对象是{}

function isEmpty(value) {
  return (Array.isArray(value) && value.length === 0) 
      || (Object.prototype.isPrototypeOf(value) && Object.keys(value).length === 0);
}

你可能感兴趣的:(jquery)