我想改变表行的位置

时间:2011-04-07 05:57:39

标签: jquery

我在各种行的表格中的.php页面中有数据。 我想方便用户可以通过垂直拖动行来改变这些行的位置。可以使用jQuery。

建议我一些插件或一些教程链接,以便我可以这样做。

我正在遵循这个教程,但我无法弄清楚如何在databse.SO中使行位置持久,当用户来到该页面时,他会看到相同的行排列

我正在使用本教程http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/

先谢谢。

2 个答案:

答案 0 :(得分:2)

article可能有助于你

personally prefer

答案 1 :(得分:2)

我过去曾使用Table Drag and Drop jQuery plugin。它运作得很好。

修改:添加了示例

这就是我将新行顺序发送到PHP脚本的方式,该脚本将其保存在数据库中:

$(document).ready(function() {
    // Initialise the drag-and-drop
    $("#table3").tableDnD({
        // Set the action to perform when the mouse button is released
        onDrop: function(table, row) {
            $("#AjaxResult").load("list_sort.php?list_id=3&"+$.tableDnD.serialize());
        }
    });
});