我有一个像这样的数组命名内容:
contents[0]='<button id=' + randomChar0 +' class="btn" onclick="check('+ f + randomChar0 + f +');">' + randomChar0 + '</Button>';
contents[1]='<button id=' + randomChar1 +' class="btn" onclick="check('+ f + randomChar1 + f +');">' + randomChar1 + '</Button>';
contents[2]='<button id=' + randomChar2 +' class="btn" onclick="check('+ f + randomChar2 + f +');">' + randomChar2 + '</Button>';
我试图用这段代码重新排列它:
function shuffle(array) {
var currentIndex = array.length, temporaryValue, randomIndex ;
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}
return array;
};
这样称呼它:
shuffle(contents);
来自How to randomize (shuffle) a JavaScript array?
但是这种方法经常给我双打。
知道如何确保按钮始终更改订单而不使用任何加倍并且不使用sort()
吗?
我希望重新排列数组,以便每当我输出数组时,其中的按钮都会以不同的顺序显示。我也不希望任何按钮偶然出现两次,这意味着我需要以“随机”顺序输出所有按钮。
更新:我刚发现这个test of array shufflings,结果很有趣。