我想询问是否可以将可排序的表连接到表元素。以下是结构。我读到元素不起作用,我的测试没有成功:
<table id="photoPreviews"><tr>
<td>... other elements here</td>
<td>... other elements here</td>
<td>... other elements here</td>
<td>... other elements here</td></tr><tr>
<td>... other elements here</td>
<td>... other elements here</td>
<td>... other elements here</td>
<td>... other elements here</td>
</tr></table>
在视觉上它看起来像这样:
三江源
答案 0 :(得分:1)
html <table>
实际上只应用于表格数据...除非所有其他方法都失败。
在这种情况下,您最好使用<ul>
。类似的东西:
<ul id='photoPreviews'>
<li>Other elements go here. . .</li>
<li>Other elements go here. . .</li>
<li>Other elements go here. . .</li>
<li>Other elements go here. . .</li>
</ul>
之后,只需按照jquery sortable文档获取高级功能。
祝你好运!