标签: coffeescript
如何使用这种理解从第二个元素开始迭代:
destroy c for c, i in container.children
在this table
答案 0 :(得分:3)
你无法从理解中的任意位置开始。
相反,添加一个when条件,只检查迭代的索引是否大于第一个元素。
when
destroy c for c, i in container.children when i >= 1