对不起,回来了
我怎样才能得到“最后一个”可排序的项目。我正在从一个列表 2 中拖动另一个列表,但我需要/想要将“长度”附加到最后一个拖动的项目,这可能不是“已删除”列表中的最后一个项目 - 希望您理解。
一些代码的想法
$j(function() {
$j("#id_section_layout").sortable({
connectWith: '.colunm,.layoutcolunm,#layoutbin',
helper: 'clone',
receive: function(event, ui) {
$j("#id_section_layout .content_options").children().show();
var val= $j("#id_section_layout .content_options").length;
// .. I want to append val to the LAST dragged/dropped item
//.. If I do this it is always to the "last" item in the list which may not be the last dragged item -
$j("#id_section_layout .content_options").last().append(val);
//.. So is there a way to get the last dragged item?
}
});
});