Retrieve data from JSON file and display images in a gallery

后端 未结 3 1966
既然无缘
既然无缘 2021-01-01 07:51

I\'m new to JQuery and any help would be much appreciated.

\"Using $.getJSON function, retrieve the data in the items.json file provided and display the images in a

相关标签:
3条回答
  • 2021-01-01 08:01

    If you want to show just img use this(I used div with id="images")

     $(document).ready(function() {
    
                $.getJSON('items.json', function(data) {
                    $.each(data.items, function(i, f) {
                        $("#images").append("<img src=" + f.url + " >");
    
                    });
                });
            }); 
    
    0 讨论(0)
  • 2021-01-01 08:13

    Try this:

    $.getJSON('items.json', function(data) {
        $.each(data.items, function(i,f) {
            $("ul").append("<li>URL: "+f.url+"</li><li>Caption: "+f.caption+"</li><br />");
    
        });
    });
    
    0 讨论(0)
  • 2021-01-01 08:16

    Just an update for displaying img;

    $.getJSON('js/ads.json', function (data) {
                $.each(data.items, function (i, f) {
                    $("ul").append("<li>URL: " + f.url + "</li><li><img src="+f.url+" id=\"image\"/></li><br />");
    
                });
            });
    
    0 讨论(0)
提交回复
热议问题