在JQuery中更改表格单元格内输入的值

时间:2018-05-14 19:06:41

标签: jquery

我正在尝试让JQuery重新编号'订单'排序后的列。这是代码:

// Sorting

    $(function() {

    $("#sortable").sortable({cursor: "move"});
        $("#sortable").disableSelection();

    });

    // Renumber

    $("#sortable").sortable({

        stop: function (event, ui){

            $(this).find('tr').each(function(i){

    // this is where the problem is:

                $(this).find('td:last').$(this).find('input').val(i+1);

            });

        }

    });

那么,获取值字段的正确方法是什么?

0 个答案:

没有答案