“Array.prototype.slice:'这个'不是一个JavaScript对象“在IE8中每个错误

时间:2017-07-11 07:21:41

标签: javascript jquery

我只在IE8中收到此错误消息,而且我不知道如何转换现有的IE8兼容性功能。

(function() {
  [].slice.call(document.querySelectorAll('.tabs')).forEach(function(el) {
    new CBPFWTabs(el);
  });
})();

CBPFWTabs.prototype._init = function() {
  this.tabs = [].slice.call(this.el.querySelectorAll('nav > ul > li'));
  this.items = [].slice.call(this.el.querySelectorAll('.content-wrap > section'));

  this.current = -1; // current index
  this._show(); // show current content item
  this._initEvents();
};

0 个答案:

没有答案