0

我想问是否可以将可排序连接到表格元素。下面是结构。我读到元素不起作用,我的测试没有成功:

<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>

视觉上看起来像这样:

在此处输入图像描述

谢谢你

4

1 回答 1

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 可排序文档了解高级功能。

祝你好运!

于 2012-09-13T20:53:41.187 回答