我有这段代码用于生成从 1 到 20 混合的数字列表:
var cells = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
cells.sort(function(a,b){
return Math.floor(Math.random()*3 - 1);
});
现在我需要解析数组以对每个数字执行操作。在 PHP 中,我会这样做:
// PHP loop that I know... I need a javascript equivalent..
foreach($cells as &$cell) {
// Javascript code, that I need to run
$(".grid .cell:nth-child(" + $cell + ")").doAction();
}
有人知道如何在 JS 中转换 PHP foreach 循环吗?