0

可能重复:
随机化数组中的元素?

我在网上找到了这个“Quote Rotator”脚本,它可以正常工作,但我想随机化显示引号的顺序,而不是在列表中循环。任何帮助,将不胜感激。

var myquotes = new Array(
    'Quote #1',
    'Quote #2',
    'Quote #3' // Leave the last quote without a comma at the end
    );

function rotatequote()
{
    thequote = myquotes.shift(); //Pull the top one
    myquotes.push(thequote); //And add it back to the end

    document.getElementById('quotetext').innerHTML = thequote;
    t=setTimeout("rotatequote()",10000);
}

// Start the first rotation.
rotatequote();
4

1 回答 1

1

将 rotateQuote 更改为:

function rotatequote()
{
    var thequote = myquotes[( Math.floor ( Math.random() * myquotes.length ) )];
    document.getElementById('quotetext').innerHTML = thequote;
    var t=setTimeout("rotatequote()",10000);
}
于 2012-07-08T00:27:29.210 回答