let oldIndex,newIndex;
//随机出现选中
function randomNum() {
newIndex = Math.floor(Math.random() * 11);
if (newIndex === oldIndex) {
return randomNum()
} else {
oldIndex = newIndex;
return newIndex;
}
}
js随机生成0-10的数,且相邻两个数不一样
最新推荐文章于 2023-08-07 00:34:05 发布