ie数组不支持indexOf 方法解决

if(!Array.prototype.indexOf){

  Array.prototype.indexOf = function(obj){

    for(var i=0;i<this.length;i++){

      if(this[i] == obj){

        return i;

      }

    }

    return -1;

  };

}

上一篇:SWIFT 闭包的简单使用


下一篇:oracle针对某列让特定信息排序[decode]