IE8 returns 'Object expected' [].slice.call [duplicate]

倾然丶 夕夏残阳落幕 提交于 2019-12-20 05:24:08

问题


Im newbie in js, this code works good on all browser except li elements (tabs).

	(function() {

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

	})();

Any help?


回答1:


IE8 partially supports querySelectorAll(), http://caniuse.com/#feat=queryselector

read this too :querySelectorAll alternative for IE



来源:https://stackoverflow.com/questions/33936450/ie8-returns-object-expected-slice-call

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!