我刚刚完成了一个小表格,发现我使用findIndex的方式与IE不兼容。
以下是此问题的一个示例。
var people = [
{name:"Mike", age:"25"},
{name:"Bill", age:"35"},
{name:"Terry", age:"44"}
];
console.log(people.findIndex(x => x.name=="Bill" ));
解决此问题的最快方法是什么?
答案 0 :(得分:1)
查找浏览器的索引支持
Chrome 45.0 and above: Supports
Firefox 25.0 and above: Supports
Internet Explorer: No support
Microsoft Edge: Supports
Opera: Supports
Safari 7.1 and above: Supports
因此,您需要修改类似于以下内容的代码才能在所有浏览器中使用。
var index;
for(var i=0;i<people.length;i++){
if(people[i].name == 'billi'){
index = i
}
}
答案 1 :(得分:0)
这对IE来说是最好的
people.findIndex(function(x){ x.name=="Bill" }));