這將返回包含提供的數字的數值的對象。使用更新.filter功能
var objGroup = [
{ "color": "YELLOW", "number": "11,7,44,22" },
{ "color": "BLUE", "number": "8,20,9" },
{ "color": "GREEN", "number": "12,34,55" }
];
var found = findItem(objGroup, '11');
function findItem(array, value) {
for (var i = 0; i < array.length; i++) {
if (array[i].number.split(',').indexOf(value) >= 0) {
return objGroup[i];
}
}
}
if (found) {
alert(found.color);
}
http://jsfiddle.net/rVPu5/
替代,不會被儘可能廣泛的支持:
var found = objGroup.filter(function(item) {
if (item.number.split(',').indexOf('11') >= 0) {
return true;
}
return false;
});
if (found.length > 0) {
alert(found[0].color);
}
http://jsfiddle.net/rVPu5/2/
最後 - jQuery的版本:
var found = $.map(objGroup, function(item) {
if (item.number.split(',').indexOf('11') >= 0) {
return item;
}
});
if (found.length > 0) {
alert(found[0].color);
}
http://jsfiddle.net/rVPu5/3/
請您描述一下您要做的更詳細的工作嗎? 您的number-property不是對象或數組。它是一個包含數字的字符串。你的代碼中沒有使用任何jQuery?!? – LeJared