我有一组...非常...嵌套的表格。
这是我的 DOM:
<table id="sortable">
<thead>...</thead>
<tbody>
<tr class="draggable_item">
<td>
<table>
<thead class="show_this_while_dragging">...</thead>
<tbody class="hide_this_while_dragging">
<tr>
<td>...</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
table#sortable 中的每个 tr 都是可拖动的。当它被拖动时,我想将 tbody 隐藏在每个tr.draggable_item 内的表格中。
这是我初始化可排序的方法:
$( selector ).sortable({
helper: fixHelper
});
$( selector ).sortable( "option", "start", function(event, ui) { start_callback(selector) } );
function start_callback(selector)
{
$(selector + " table tbody").hide();
}
这几乎可以按预期工作。每个 tbody 都消失了,即使是被拖动的那个。但是 tbody 在当前拖动的项目中还有额外的空间。
我不确定是什么原因造成的,或者如何删除它。一旦我开始拖动项目,正在拖动的 tr.draggable_item 的高度就会被锁定。