我有一个 Json 字符串作为-
var RetailerData = {};
// The object that the JSON string should represent, can use this as it is if you want.
RetailerData.webSites = [
{
id: 1,
text: 'J.Crew',
image: 'images/retailer-logo/jcrew.png',
extra: 'www.jcrew.com'
},
{
id: 2,
text: 'GAP',
image: 'images/retailer-logo/gap.png',
extra: 'www.gap.com'
}];
我想使用 jquery 解析它 $.parseJSON
以获取每个值。我已经尝试过使用
var obj = $.parseJSON(RetailerData.webSites);
$.each(obj, function() {
console.log(this['id']);
});
但是每次尝试都会出现连续错误。谁能告诉一个正确的方法来做到这一点。提前致谢。