以下是使用jQuery排序元素的好方法:jQuery UI Sortable, then write order into a database
$('#element').sortable({
axis: 'y',
update: function (event, ui) {
var data = $(this).sortable('serialize');
// POST to server using $.post or $.ajax
$.ajax({
data: data,
type: 'POST',
url: '/your/url/here'
});
}
});
但是如何更改代码以使其适合移动设备?在触摸屏上排序根本不起作用。