我使用.sortable()得到了这个运行时动态无序列表,我希望在拖动事件后将其新的listitem顺序存储在我的cookie中。在页面重新加载时,从cookie加载保存的索引值,以便恢复先前更改的订单。
<ul id="sortUL">....</ul>
$.cookie('newItemOrder', $(#sortUL).sortable('serialize'));
这给了我一个newItemOrder值,如下所示:
item[]=4&item[]=1&item[]=3&item[]=2
在页面加载中,我从
获取值var restoreValues = $.cookie('newItemOrder');
但是如何将此变量应用于我的UL和LI?我有点卡在这里。