作者:爵士独舞 | 来源:互联网 | 2023-05-17 05:59
how can I reorder an array
我怎样才能重新排序数组
[1, 2, 3, 4, 5, 6, 7, 8, 9]
into..
[1, 4, 7, 2, 5, 8, 3, 6, 9]
I need it for a 3-column css layout:
我需要它为3列css布局:
ul { -webkit-column-count: 3 }
This should produce:
这应该产生:
| 1 | 2 | 3 |
| 4 | 5 | 6 |
| 7 | 8 | 9 |
2 个解决方案