我创建了一个在网格视图中显示 Instagram 图像的页面。当我单击特定图像时,会打开一个新页面,显示原始 Instagram 链接中的特定图像。我希望在原始页面中打开图像,而不是仅使用 Yahoo YUI 的任何新页面。这里有一个例子。(在 panel_five 下)。我没有YUI的经验。我的整个代码是://它在 10 个不同的框中显示 10 个图像
$(function() {
$.ajax({
type: "GET",
dataType: "jsonp",
cache: false,
url: "https://api.instagram.com/v1/media/popular?client_id=70fd1ce846d641928bf0a047053cf62d",
success: function(data) {
for (var i = 0; i < 10; i++) {
$('.ttl').first().parent().append('<div class="ttl"><div class="ttlpadding"><div class="item">' + "<a href='" + data.data[i].images.standard_resolution.url +"' ><img src='" + data.data[i].images.thumbnail.url +"' /></a>" +"</div></div></div>");
}
}
});
});