我想创建一个循环,循环遍历数组并每次随机显示7个不同的对象?到目前为止,这是我的代码。
$.ajax({
type: 'GET',
url: insta_url,
dataType: 'jsonp',
success: function(data) {
instaList.push(data.data);
function randomizeImages() {
var currentIndex = instaList.length;
for (var i = 0; i < 6; i++) {
var randomIndex = Math.floor(Math.random() * currentIndex);
}
return;
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('Not able to connect to Instagram!');
}