gpt4 book ai didi

javascript - IE 8 - 对象不支持此属性或方法

转载 作者:行者123 更新时间:2023-11-30 16:53:45 24 4
gpt4 key购买 nike

我正在研究旧的 IE 兼容性,特别是 IE 8。但是,我的 JS 不工作 ->我在我的项目 item_tracked

上收到了 Object doesn't support this property or method 错误
;(function () {
setTimeout(function () {
currentItems().forEach(function (item_tracked) {
/* item_tracked here */
$(item_tracked.getView()).addClass('animated');
/* item_tracked problem here */
});
}, 500);
})();

有什么想法吗?

最佳答案

假设 currentItems() 返回一个数组,你的问题是 IE8 不支持 Array.prototype.forEach .

您可以替换为 for 循环或使用 polyfill .

关于javascript - IE 8 - 对象不支持此属性或方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30103004/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com