これは、ランダム化機能を実行するスクリプトです。
function rotateEvery(sec) {
var Quotation=new Array()
Quotation[0] = 'Example 1..';
Quotation[1] = 'Example 2..';
Quotation[2] = 'Example 3..';
Quotation[3] = 'Example 4..';
Quotation[4] = 'Example 5..';
var which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];
setTimeout('rotateEvery('+sec+')', sec*1000);
}
rotateEvery(4);
引用[0]から引用[n]まで順番に読み取ってから繰り返します。誰か助けてもらえますか?