0

这是 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,反之亦然。

我错过了什么?任何帮助将不胜感激。

4

1 回答 1

0

没关系。只是循环了太多次。

这是答案:

$.each(data.results.albummatches.album , function(){

            //this worked
            $('.lightbox').append('<img src="'+this.image[3]['#text']+'" />');

        });
于 2013-02-17T07:41:31.113 回答