这是 JSON
"album":[
{
"name":"DD Y Ponle Play",
"artist":"Jumbo",
"id":"2528039",
"url":"http:\/\/www.last.fm\/music\/Jumbo\/DD+Y+Ponle+Play",
"image":[
{
"#text":"http:\/\/images.amazon.com\/images\/P\/B00005LN6S.01._SCMZZZZZZZ_.jpg",
"size":"small"
},
{
"#text":"http:\/\/images.amazon.com\/images\/P\/B00005LN6S.01._SCMZZZZZZZ_.jpg",
"size":"medium"
},
{
"#text":"http:\/\/images.amazon.com\/images\/P\/B00005LN6S.01._SCMZZZZZZZ_.jpg",
"size":"large"
},
{
"#text":"http:\/\/images.amazon.com\/images\/P\/B00005LN6S.01._SCMZZZZZZZ_.jpg",
"size":"extralarge"
}
],
"streamable":"0",
"mbid":""
},
这是我的功能
$.each(data.results.albummatches.album , function(){
$.each(this.image , function(){
$('.lightbox').append('<img src="'+this["#text"]+'" />');
});
});
基本上一切正常,除了我从图像对象中获得 4 种不同的图像尺寸。但是我只想抓住其中一种尺寸。
在我的一生中,我没有运气指定诸如 this[2]["#text"] 之类的 id,反之亦然。
我错过了什么?任何帮助将不胜感激。