如何使用JavaScript随机化有序列表

时间:2015-02-17 20:05:26

标签: javascript html

我正在进行包含问题的测试。

我希望问题能够随机出现在页面上而不是有序列表中。

这是我的HTML:

<ol id = "questionList">
<li id="question">Question text<br/></li>
<li id="question">Question text<br/></li>
</ol>

这是我的javascript:

var questionsList = document.getElementById('question');
var questionArray=[];
var randomize;

for (var i=0; questionsList.length>0; i++) {
        questionArray[i]=questionList[i];
}
randomize = questionArray.Math.random()*questionList.length;

document.getElementById("questionsList").innerHTML= randomize;

我无法弄清楚如何让问题随机出现,而不是从#1下降到#10。

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

已经问过问题(How to randomize (shuffle) a JavaScript array?

但这是基础知识:

固体混洗算法是Fisher-Yates(又名Knuth)Shuffle。

请参阅https://github.com/coolaj86/knuth-shuffle

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;
}

你可以像这样使用它:

var arr = ["question 1", "question 2"];
shuffle(arr);
console.log(arr);