gAllMedicalFilesClaimantsArray

gAllMedicalFilesClaimantsArray

我有一个具有2个属性(UserID和UserInfo)的对象gAllMedicalFilesClaimantsArray数组

例如:

gAllMedicalFilesClaimantsArray[0].UserID = "111";
gAllMedicalFilesClaimantsArray[0].UserInfo = "AAA-111";
gAllMedicalFilesClaimantsArray[1].UserID = "222";
gAllMedicalFilesClaimantsArray[1].UserInfo = "BDD-478333";


由于gAllMedicalFilesClaimantsArray具有8000条记录,使用Jquery或Javascript检查数组中是否存在特定UserID的最快方法是什么?

谢谢

最佳答案

var match = '222';
var matches = $.grep(myArray, function(el, index) {
   return (el.UserID === match);
});

10-04 16:01