jQuery: Как перевернуть сортируемые ('serialize') массивы от последней к первой? - PullRequest
7 голосов
/ 27 мая 2010

Обсуждение начинается. jQuery: Что делать со списком, который возвращает сортируемый ('serialize')?

Как изменить его с последнего на первый, updateList.php? Id [] = 5 & id [] = 4 & id [] = 3 & id [] = 2 & id [] = 1 && action = update?

<ul>
<li id="oreder-5">5</li>
<li id="oreder-4">4</li>
<li id="oreder-3">3</li>
<li id="oreder-2">2</li>
<li id="oreder-1">1</li>
<ul>

Мой код:

$(document).ready(function(){
    order=[];
    $('#list ul').children('li').each(function(idx, elm) { order.push(elm.id.split('-')[1]) });
    $.post('updateList.php', {'order[]': order, action: 'update'});

    function slideout(){
        setTimeout(function(){ $("#response").slideUp("slow", function () {}); }, 2000);
    }
    $("#response").hide();
 $(function() {
    $("#list ul").sortable({ opacity: 0.8, cursor: 'move', update: function() {
   var order = $(this).sortable("serialize") + '&action=update'; 
   $.post("updateList.php", order, function(theResponse){
    $("#response").html(theResponse);
    $("#response").slideDown('slow');
    slideout();
   });
    }});             
 });
});

Ответы [ 2 ]

8 голосов
/ 27 мая 2010

Это будет сделано:

var reversed = $(this).sortable("serialize").split("&").reverse().join("&");
var order = reversed + '&action=update'; 

Другими словами:

1 голос
/ 31 мая 2010

Требуется order.reverse (); до $ .post (..);

...