添加新div时,jquery sortable无法正常工作

时间:2016-02-29 21:53:36

标签: arrays jquery-ui-sortable

抱歉,很多问题都没有提供答案 因为我不知道这么多网页编程 我试过jquery sortable,我真的不知道jquery可以排序的工作 我的代码之前正在工作,直到我在这里添加新的元素<div class="grid_12">

<div id="list">
<div class="parent ui-sortable">

    <div class="grid_12">
    <h2 id="arrayorder_1">Home</h2>
    </div>

    <div class="grid_12">
    <h2 id="arrayorder_2">Profil</h2>
    </div>

</div>        
</div>

和消息:

  

警告:为foreach()提供的参数无效

sortable不会生成数组,这里是我的jquery可排序脚本

$(function() {
    // uiSort utama parent
    $('#list .parent').sortable({
        axis: 'y',
        opacity: 0.8,
        placeholder: 'placeholder',
        cursor: 'move', 
        update: function() {

            var order = $(this).sortable("serialize") + '&update=update'; 
            $.post("updateList.php", order, function(theResponse){

            alert(theResponse);

            });                                                              

        }                                 
    });
    });

请回答这个foo ..谢谢^^&#39;

0 个答案:

没有答案