我有以下 jsfiddle 我试图序列化一个类:
HTML:
<content>
<div class="portlet portlet_1 portlet_content_1 new">some content here</div>
<div class="portlet portlet_1 portlet_content_1 new">some content here</div>
<div class="portlet portlet_1 portlet_content_1 new">some content here</div>
<div class="portlet portlet_2 portlet_content_2 new">some content here</div>
<div class="portlet portlet_2 portlet_content_2 new">some content here</div>
<div class="portlet portlet_3 portlet_content_3 new">some content here</div>
</content>
<button>Serialize</button>
JS:
$("content").sortable();
$("button").on("click", function() {
var data = $("content").sortable("serialize", {
key: "item",
attribute: "class"
});
alert(data);
});
在警报中,我应该得到:
项目=1&项目=1&项目=1&项目=2&项目=2&项目=3
我不知道如何处理这个问题,因为每个 div 标签都有多个类。
有人可以帮我吗?