我制作了一个可编辑列表,其中包含可以使用 jQuery ui 和 jeditable 拖动的元素。现在我想“发布”列表的内容并保存它。如何“序列化”列表的内容?
例如,如果我有清单:
<ol id="topics">
<li><span class="editable">random topic</span></li>
<li><span class="editable">another topic</span></li>
<li><span class="editable">third topic</span></li>
</ol>
如何将其转换为字符串:
?topics1=random topic&topic2=...
我希望这是有道理的。我的目标是使用 post 保存列表顺序和内容。谢谢