2

所以我试图将来自 Medium@femalefounderssg 的最新企业家资料嵌入到在 Wix 上制作的网站中,我尝试在这里使用 JSON 和 jQuery 代码:https ://codepen.io/jasonm4130/pen/vZYbQx

var tagIndex = item.description.indexOf('<img'); // Find where the img tag starts
var srcIndex = item.description.substring(tagIndex).indexOf('src=') + tagIndex; // Find where the src attribute starts
var srcStart = srcIndex + 5; // Find where the actual image URL starts; 5 for the length of 'src="'
var srcEnd = item.description.substring(srcStart).indexOf('"') + srcStart; // Find where the URL ends
var src = item.description.substring(srcStart, srcEnd); // Extract just the URL
output += '<div class="blog-element"><img class="img-responsive" src="' + src + '" width="360px" height="240px"></div></header>';

我面临的问题是,由于代码呈现它看到的第一个内容,它总是呈现徽标(如下图所示),我希望与帖子一起显示的企业家个人资料照片通常包含在第二个

在我的实现中输出上述代码

任何人都可以建议如何修改现有代码或有哪些其他可能的实现?非常感谢!

4

0 回答 0