是否可以用Javascript保存可移动div的状态?
所以我有一个带有 div 的页面,我可以拖动它。是否有可能 - 没有 JSON 或数据库访问来保存这些 div 的位置,以便当我下次打开页面时它们位于我离开它们的位置?这是一个本地文件,因此我可以写入该文件 - 如果这是一个考虑因素。
So I have a page with divs which I can drag. Is it possible - without JSON or database access to save positions of these divs so that when I open the page next time they are in the same place as I left them? This is a local file so I CAN write to the file - if that is at all a consideration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议阅读这个问题/答案来了解如何使用 JavaScript 获取 div 的位置: 获取 div/span 标签的位置。
之后,只需使用 JavaScript 将数据保存在 cookie 中即可。这里有一个一个不错的教程来帮助您开始。
I suggest reading this question/answer to learn how to get the position of a div with JavaScript: Get the position of a div/span tag.
After that, simply use JavaScript to persist the data in a cookie. Here's a decent tutorial to get you started on that.
您是否尝试过使用cookies来存储信息。 IT 将允许一种方法来保存窗口属性,而不需要返回服务器端。
设置 COOKIE
获取 COOKIE
检查 COOKIE
Have you tried using cookies to store the information. IT would allow a means to save the window properties, and not reach back server side.
SET COOKIE
GET COOKIE
CHECK COOKIE