jquery Sortable ui保存tr位置

发布于 2024-12-24 01:45:13 字数 104 浏览 2 评论 0原文

保存到数据库后如何保留元素的位置?意思是,假设我有一个表,其中 tds 中有文本框,我重新排列表中的行并单击“提交”。如何保留表中行的新位置而不在页面刷新时恢复到原始位置?

谢谢

how do I preserve the position of my elements after a save to the database? Meaning, let's say I have a table inside which I have textboxes inside tds, and I rearrange the rows in my table and click Submit. How do I preserve the new posisition of the rows in my table without reverting back to the original position on page refresh?

Thank You

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

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

发布评论

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

评论(2

祁梦 2024-12-31 01:45:13

在您的数据库中,有一个名为“排序”或“位置”的字段,保存表单时,将位置数据序列化为实际位置(即 0、1、2、3...)。最初加载页面时,在查询中,按位置 ASC 对结果进行排序,例如 SELECT * FROM txt ORDER BY 位置 ASC;

In your database, have a field called something like "sorting" or "position" and when the form is saved, serialize the data of the positions as actual positions (i.e. 0, 1, 2, 3...). When the page is initially loaded, in your query, order the results by position ASC, e.g. SELECT * FROM txt ORDER BY position ASC;

南风起 2024-12-31 01:45:13

您可以使用相同的名称提供您的输入。

例如

当您发布值时,只需循环它们的位置或仅保存整个字符串/数组。

You can give your input with the same name.

e.g.

When you post the values, just loop through their positions or just save the whole string/array.

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