jQuery Sortable的自身序列化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery Sortable的自身序列化相关的知识,希望对你有一定的参考价值。
If your sortable.serialize() method doesn't work properly, do it by yourself ;-)
$('#sortable').sortable({ placeholder: 'ui-state-highlight', update : function () { var serial = ''; $('#sortable li.ui-state-default').each(function (key, value) { serial += $(value).attr('id')+'='+parseInt(key+1)+'&'; }); $.ajax({ type: 'POST', data: serial, }); } });
以上是关于jQuery Sortable的自身序列化的主要内容,如果未能解决你的问题,请参考以下文章
jquery Sortable connectWith 两次调用更新方法
jQuery UI:sortable('toArray') 返回一个空数组
jquery sortable div拖放文本不能被ckeditor编辑