我只在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();
};