答案 0 :(得分:0)
您可以简单地将sortable()方法应用于适当的tbody元素。有关宽度维护的错误修复已解决here,因此您应该将其应用于您的tablesorter初始化。
var fixHelper = function(e, ui) {
ui.children().each(function() {
$(this).width($(this).width());
});
return ui;
};
$("#sort tbody").sortable({
helper: fixHelper
}).disableSelection();