将“jQuery与prototype.js一起使用”时,“TypeError:this.inject不是函数”

时间:2015-02-03 16:05:58

标签: jquery prototypejs

我正在使用jQuery和原型。我正在使用jQuery.noConflict()来消除与原型的冲突。除了一个地方,它在任何地方都很好。

我在prototype-1.6.0.3.js

收到一个错误
  

" TypeError:this.inject不是函数"

prorotype-1.6.0.3.js

中的这些行中收到错误
flatten: function() {
    return this.inject([], function(array, value) {
      return array.concat(Object.isArray(value) ?
        value.flatten() : [value]);
    });
  },

它破坏了我的一整天,但我无法解决这个问题。 如果有人以前解决过这个问题,请回复我。感谢

0 个答案:

没有答案