gpt4 book ai didi

javascript - 使每个数组项成为单独的链接

转载 作者:行者123 更新时间:2023-12-03 04:50:49 24 4
gpt4 key购买 nike

我需要帮助从数组创建链接。我需要为数组中的每个项目创建一个个性化链接

代码如下:

caption: function(instance, item) {
var caption, link, collectTags, tags;
caption = $(this).data('caption');
link = '<a href="' + item.src + '">Download image</a>';
collectTags = $(this).parent().attr("class").split(' ');
tags = $.each(function() {
'<a href="' + collectTags + '">' + collectTags + '</a>'
});
return (caption ? caption + '<br />' : '') + link + '<br/>' + tags;
}

最佳答案

你的代码可能是这样的,你调用了 $.each 而不传递数组。

caption : function( instance, item ) {
var caption, link, collectTags, tags;

caption = $(this).data('caption');
link = '<a href="' + item.src + '">Download image</a>';
collectTags = $(this).parent().attr("class").split(' ');
tags = $.map(collectTags,function(it){ return '<a href="' + it + '">'+ it +'</a>';});

return (caption ? caption + '<br />' : '') + link + '<br/>' + tags;

}

关于javascript - 使每个数组项成为单独的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42663823/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com