我得到以下字符串:
[{"Key":1,"Value":"correct"},{"Key":2,"Value":"incorrect"},{"Key":3,"Value":"incorrect"},{"Key":4,"Value":"correct"},{"Key":5,"Value":"incorrect"}]
我想根据该 TR 的 ID 在 JSON 中是否具有“正确”或“不正确”的值来更改我的 TR 的背景颜色。
如何从 JSON 中获取单个项目的值?我试过了:
success: function (result) {
// update with results
//alert(JSON.stringify(result));
//$('#myDiv').html(JSON.stringify(result));
// non of these work
alert(result[0]);
alert(result[key]);
},