javaScript,如何使用对象循环数组并随机显示它们?

时间:2014-05-19 13:10:04

标签: javascript arrays api

我想创建一个循环,循环遍历数组并每次随机显示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!');
    }

0 个答案:

没有答案