可能重复:
随机化数组中的元素?
我在网上找到了这个“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();