2011-04-28 14 views

回答

2

您可以嘗試$.grep()

var arr = $.grep(udt.Data, function(Data, i){ 
    return Data.productTitle === 'product1'; 
}); 

Example on jsfiddle

相關問題