您可以遍历数组并测试该属性:
function search(nameKey, myArray){ for (var i=0; i < myArray.length; i++) { if (myArray[i].name === nameKey) { return myArray[i]; } }}var array = [ { name:"string 1", value:"this", other: "that" }, { name:"string 2", value:"this", other: "that" }];var resultObject = search("string 1", array);


