如何保留 jquery ui 可排序交互的状态

发布于 2024-12-09 12:43:26 字数 906 浏览 0 评论 0原文

我有以下代码:

<script>
$(function() {
    $( "#sortable" ).sortable();
    $( "#sortable" ).disableSelection();
});
</script>


<div class="demo">

   <ul id="sortable">
    <li class="ui-state-default">Item 1</li>
    <li class="ui-state-default">Item 2</li>
    <li class="ui-state-default">Item 3</li>
    <li class="ui-state-default">Item 4</li>
    <li class="ui-state-default">Item 5</li>
    <li class="ui-state-default">Item 6</li>
    <li class="ui-state-default">Item 7</li>
   </ul>

</div>

当我第一次加载页面时,列表按此顺序(下面第一张图片)(1 到 7),然后我移动并更改列表的顺序(下面第二张图片)。点击重新加载,顺序将恢复为原始顺序。 可以保留更改后的列表顺序。

在此处输入图像描述

在此处输入图像描述

感谢您的帮助

I have the following code:

<script>
$(function() {
    $( "#sortable" ).sortable();
    $( "#sortable" ).disableSelection();
});
</script>


<div class="demo">

   <ul id="sortable">
    <li class="ui-state-default">Item 1</li>
    <li class="ui-state-default">Item 2</li>
    <li class="ui-state-default">Item 3</li>
    <li class="ui-state-default">Item 4</li>
    <li class="ui-state-default">Item 5</li>
    <li class="ui-state-default">Item 6</li>
    <li class="ui-state-default">Item 7</li>
   </ul>

</div>

When i first load page, the list is in this(first pic below) order(1 through to 7), then i move and change the order of the list(second pic below). Hit reload and the order reverts back to the original order. Is is possible to preserve the changed order of the lists.

enter image description here

enter image description here

thank you for the help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一场信仰旅途 2024-12-16 12:43:26

这基本上是一个关于如何在页面刷新之间存储数据的问题。它不是 jQuery UI 特有的东西。通常有两个主要位置可以存储必要的数据:

1)cookie
2)数据库

如果你想长期维护列表的顺序,那么你将需要使用数据库。如果这只是一个短期问题,那么 cookie 可能是这两种解决方案中更好的一个,因为它简单得多,并且不需要一堆 AJAX 请求。

HTML5 还提供本地数据存储,因此您可以用它完成同样的事情。但并非所有浏览器都支持它。

This is basically a question about how to store data in between page refreshes. It's not something specific to jQuery UI. There are generally two main places you can store the necessary data:

1) A cookie
2) A database

If you want to maintain the order of the lists in the long-term, then you will need to use a database. If it's just a short-term issue, then a cookie is likely the better of the two solutions because it's a lot simpler and won't require a bunch of AJAX requests.

HTML5 also offers local data storage, so you could accomplish the same thing with that. But it won't be supported by all browsers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文