如何使用Sortable JQuery循环或获取表中每行的数据。 我唯一能做的就是在对行进行排序后得到数据,但它只返回我拖动的行的索引。
$('document').ready(function(){
$('tbody').sortable({
update: function(event, ui) {
//i want to do the looping here
}
})
});
我希望在循环发生后从No.字段获取数据
答案 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
});
}
});
})