Serialize() 可排序的手风琴

发布于 2024-09-08 11:48:45 字数 518 浏览 4 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文