jquery Sortable ui保存tr位置
保存到数据库后如何保留元素的位置?意思是,假设我有一个表,其中 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的数据库中,有一个名为“排序”或“位置”的字段,保存表单时,将位置数据序列化为实际位置(即 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;
您可以使用相同的名称提供您的输入。
例如
当您发布值时,只需循环它们的位置或仅保存整个字符串/数组。
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.