gpt4 book ai didi

javascript - Jquery - .forEach() 在 IE8 中不工作

转载 作者:技术小花猫 更新时间:2023-10-29 11:46:38 25 4
gpt4 key购买 nike

我为其中一个工作平台创建了这个小交互 - http://jsfiddle.net/S79qp/426/

它在除 IE8 之外的所有浏览器中都能正常工作。当我运行控制台时,似乎是这部分出现问题...

Array.prototype.forEach.call(l, function(item) {
a.push(jQuery(item).text());
});

谁能告诉我一个 IE8 友好的替代品,这样我就可以让它与所需的版本兼容?

最佳答案

如果你想要的只是 IE8 中的 forEach():

if (typeof Array.prototype.forEach != 'function') {
Array.prototype.forEach = function(callback){
for (var i = 0; i < this.length; i++){
callback.apply(this, [this[i], i, this]);
}
};
}

这将表现为 as expected在任何没有内置它的浏览器中。

关于javascript - Jquery - .forEach() 在 IE8 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16186930/

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