如何將此隨機結果更改爲從較低數字開始的序列?我是JS中的新成員,並試圖在沒有解決方案的情況下進行修改。我希望任何人都可以幫忙。將隨機結果更改爲序列
function randomFeed() {
var $el = $("#randomFeed");
var random = new Array('news1','news2','news3','news4','news5','news6');
var randomIndex = Math.floor(Math.random() * 4);
var newElement = random[randomIndex];
$el.prepend("<tr><td>" + newElement + "</td></tr>").find("tr").first().hide();
$el.find("tr").first().fadeIn();
if ($el.find("tbody tr").length > 20) {
$el.find("tbody tr").last().fadeOut(400, function() {
$(this).remove();
});
}
slimScrollUpdate($el.parents(".scrollable"));
setTimeout(function() {
randomFeed();
}, 3000);
}
撕掉隨機的東西,只是使「randomIndex」增量計數器變量。例如'var notsorandomIndex = 0;'然後'notsorandomIndex ++'某處。 –
你的目標是什麼? '如何將這個隨機結果變成從較低數字開始的序列'是什麼意思? –