作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我要做的就是随机化这些函数的运行顺序。我知道这是你可以循环的东西,我只是不确定如何循环。
randomRadio = Math.round(Math.random() * 4);
if (randomRadio === 4) {
createRadios("d");
createRadios("c");
createRadios("b");
createRadios("a");
} else if (randomRadio === 3) {
createRadios("c");
createRadios("a");
createRadios("b");
createRadios("d");
} else if (randomRadio === 2) {
createRadios("a");
createRadios("b");
createRadios("c");
createRadios("d");
} else {
createRadios("b");
createRadios("a");
createRadios("c");
createRadios("d");
}
最佳答案
我首先将可能的值放入数组中,然后不断删除数组的随机成员(并将其与函数一起使用)直到数组为空。
虽然这不会将它限制为您在上面选择的排列,但它会使用所有排列。
var radio_to_create = [ 'a', 'b', 'c', 'd' ];
while(radio_to_create.length) {
var index = Math.floor(Math.random() * radio_to_create.length);
createRadios(radio_to_create.splice(index, 1)[0]);
}
关于javascript - 有没有办法干掉这段代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26204653/
我是一名优秀的程序员,十分优秀!