循环遍历可排序行JQuery

时间:2016-10-13 02:31:39

标签: jquery jquery-ui-sortable

如何使用Sortable JQuery循环或获取表中每行的数据。 我唯一能做的就是在对行进行排序后得到数据,但它只返回我拖动的行的索引。

以下是代码:

$('document').ready(function(){
     $('tbody').sortable({
          update: function(event, ui) {
          //i want to do the looping here
          }
     })
});

我希望在循环发生后从No.字段获取数据

Table Sort

1 个答案:

答案 0 :(得分:0)

OMG我解决了我自己的问题

我首先使用每个函数循环表中的行,然后将其置于可排序

的更新函数中

这是代码

$('document').ready(function(){
    $('tbody').sortable({
        update: function(event, ui) {
            //loop data

            $('tbody:first th').each(function() {
                var data = $(this).html();
               // alert(data);

                //do the saving here
            });
        }

    });
})