我正在使用Table Drag and Drop JQuery插件(http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/)。
我有一个初始化排序的按钮。但是,在完成排序后,我想对其进行取消初始化,以便用户可以继续执行其他任务。初始化后如何去除排序或禁用它?
顺便说一下,初始化代码是:
$('table.listing').tableDnD({
onDrop: function(table, row) {
... serialization of data and ajax post here...
}
});
答案 0 :(得分:0)
尝试使用function
unbind().
见这个
$("table").unbind("mousedown");
希望这有帮助。