用数据创建动态html链接

时间:2017-03-23 12:43:34

标签: javascript jquery html

我想使用来自 AIPIFLICKR 的数据创建动态html链接,我从 flickr 获取数据,所以我只需要从{{1}创建隐身日期的链接点击后我需要在JS中获取我的代码(它可以工作但不是链接):

author_id

然后我需要这样的事情:

var output = "";
$.each(flickrresponse.items, function(index, value) {
  //console.log(index);
  output += '<div> <a href="">' +
    value.author + '</a><figure><img src="' +
    value.media.m + '" alt="' +
    value.title + '" title="' +
    value.title + '" /><figcaption>' +
    value.author + '</figcaption></figure></div>';
})
$('#output').html(output)

0 个答案:

没有答案