我的数组看起来像这样:
var someArray =
[
{ id: 'someID', name: 'someName', title: 'someTitle' },
{ id: 'anotherID', name: 'anotherName', title: 'anotherTitle' },
{ id: 'otherID', name: 'otherName', title: 'otherTitle' }
];
我想获取引用的对象的索引id === 'anotherID'
引用someArray
我知道我可以$.grep()
用来返回一个对象:
var resultArray = $.grep(columns, function(e){return e.id === 'anotherID'});
resultArray
将返回一个匹配匿名函数条件的对象数组,但不会返回该对象的索引someArray
我正在寻找 JavaScript/Jquery 解决方案。谢谢你。