这应该很容易,它可能只涉及数学。我有一个三列布局,我想为从我的数据库返回的每个项目附加 jQuery 可折叠 div。
示例:如果我从数据库中返回 9 个项目:
column 1 = 1, 4, 7
column 2 = 2, 5, 8
column 3 = 3, 6, 9
这是我到目前为止所拥有的:
if (centerCount == 1 || centerCount == 4 || centerCount == 7)
{
// add to column 1
}
else if (centerCount == 2 || centerCount == 5 || centerCount == 8)
{
// add to column 2
}
else if (centerCount == 3 || centerCount == 6 || centerCount == 9)
{
// add to column 3
}
以上假设物品数量为 9。如果我不知道会返回多少物品,我该怎么办?