我正在尝试让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);
});
}
});
那么,获取值字段的正确方法是什么?