表 - 每行 3 个单元格
http://jsfiddle.net/tiitremmel/DpMB7/ - 我已经完成的基本示例
我正在尝试重新排列表格单元格,以便表格每行始终包含 3 个单元格。默认情况下,表格每行始终有 1 个单元格。
默认表格外观:
1
2
3
4
5
6
7
结果应该是
1 2 3
4 5 6
7
jQuery 应限制每行 3 个单元格。
http://jsfiddle.net/tiitremmel/DpMB7/ - basic sample what I've done already
I'm trying to rearrange table cells so that the table will result always 3 cells per row. Table have always by default 1 cell per row.
Default table look:
1
2
3
4
5
6
7
And the result should look
1 2 3
4 5 6
7
jQuery should limit 3 cells per row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 slice 以您想要的方式拆分
td
,并将它们附加到 des 表中。鉴于此来源:
您最终将得到以下结果:
jsfiddle 上的示例。
You can use slice to split up your
td
's in the fashion you want and append them to your des table.Given this source:
You will end up with the following:
Example on jsfiddle.
你可以尝试这样的 http://jsfiddle.net/DpMB7/10/
这不是最好的世界上有 jQuery 代码,但是嘿,我正在学习:)
You can try something like this http://jsfiddle.net/DpMB7/10/
It's not the best jQuery code in the world, but hey, I'm learning :)