随机化 li 项目并冻结多个



我需要随机化 5-n li 项目的列表,并将 1-5 个项目设置为特定位置,例如,我有

  1. 一个
  2. C
  3. d
  4. e
  5. f

我想随机化最后 4 个并放入 li[0] 字母 D 和 li[2] 字母 F结果:

  1. d
  2. f
  3. C
  4. 一个
  5. e

这是我的代码。我错在哪里?谢谢!

    var ul = document.querySelector('ul');
    for (var i = ul.children.length; i >= 0; i--) {
    if(ul.children.innerHTML == "XXX") {
        ul.appendChild(ul.children[0]);
    }
    if(ul.children.innerHTML == "XXXX") {
        ul.appendChild(ul.children[1]);
    }
    if(ul.children.innerText == "XX") {
        ul.appendChild(ul.children[2]);
    } else {
        ul.appendChild(ul.children[generateRandom(i) | 0]);
    }
}

function generateRandom(i) {
    var num = Math.random() * i | 0;
    return (num === 0 || num === 1 || num === 2) ? generateRandom(i) : num;
}

var $test = $('#test');
var $li = $test.children();
while ($li.length > 0) {
  //pick a random li from the variable
  var $next = $li.eq( Math.floor( Math.random() * 10 * $li.length ) % $li.length );
  //move it to the end of ul
  $test.append($next);
  //remove the li from our variable so it won't be found again
  $li = $li.not($next);
}
//move the f to the top, so when we move the d to the top it will be second
$test.prepend($test.children().filter(function(){ return this.innerHTML === 'f'; }));
//move the d to the top
$test.prepend($test.children().filter(function(){ return this.innerHTML === 'd'; }));
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul id="test">
  <li>a</li>
  <li>b</li>
  <li>c</li>
  <li>d</li>
  <li>e</li>
  <li>f</li>
  <li>g</li>
  <li>h</li>
  <li>i</li>
  <li>j</li>
  <li>k</li>
</ul>

最新更新