IE中的jQuery sortable()

时间:2013-01-05 15:35:30

标签: jquery jquery-ui jquery-ui-sortable

我已经制作了这个jQuery脚本>

$(document).ready(function() {

    $(function() {
    $("#topmenu ul").sortable({ opacity: 0.6, cursor: 'move', update: function() {
            var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
            $.post("?id=", order, function(theResponse){
                $("#contentRight").html(theResponse);
            });
        }
    });
});

});

但它在Internet Explorer中没有做任何事情。我不能按照意图拖动菜单项。该脚本在Goole Chrome中完全正常运行。 我一直在看剧本,我似乎无法找到问题。

提前致谢。

0 个答案:

没有答案