Serialize() 可排序的手风琴
我在 jQueryUI 论坛上问了这个问题,但没有得到回应。
我创建了一个可排序的手风琴,但我似乎无法弄清楚如何像在非手风琴可排序上一样序列化索引。
在我的 H3 元素上,我有 id="agendas_1234" ,然后是以下代码。但是我定义 params 变量的行不起作用。我没有得到与常规可排序(无手风琴)相同的 [1234,3456,123]
$(tab).find('#accordion').accordion({
header: "> div > h3",
collapsible: true
}).sortable({
axis: "y",
handle: "h3",
stop: function(event, ui) {
stop = true;
},
update: function(event, ui) {
var params = $(this).sortable('serialize');
}
});
I asked this question on the jQueryUI forums, but got no response.
I've created a sortable accordion but I can't seem to figure out how to serialize the indexes like you can on a non-accordion sortable.
on my H3 elements I have the id="agendas_1234" and then the following code. But the line where I define the params variable doesn't work. I don't get the same [1234,3456,123] that I would get with a regular sortable (no accordion)
$(tab).find('#accordion').accordion({
header: "> div > h3",
collapsible: true
}).sortable({
axis: "y",
handle: "h3",
stop: function(event, ui) {
stop = true;
},
update: function(event, ui) {
var params = $(this).sortable('serialize');
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于想通了一些事情。
http://www.dzone.com/links/jqueryui_serializing_data_for_a_sortable_accordion.html
Finally figured something out.
http://www.dzone.com/links/jqueryui_serializing_data_for_a_sortable_accordion.html