如何向拖放 div 添加 cookie
您好,我在我的网站上添加了拖放功能请参阅此处,因为我是初学者我不知道如何向页面或 div 添加 cookie,我想要一个保存按钮,该按钮将保存 div 的位置,以便当用户返回到页面时,它将位于他们离开的位置,任何帮助将不胜感激,
Hello i have added a drop and drop feature to my site See Here and as i am a beginner i don't know anything about adding cookies to a page or a div, i would like to have a save button which will save the position of the div so that when a user returns to a page it will be where they left it, any help will be appreciated,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来你正在使用 jQuery。
包含 jquery.cookie.js。您现在可以设置像
$.cookie('position_x', 123)
这样的 cookie,并像$.cookie('position_x')
那样获取它们。拖放库应该有一些回调,当您停止拖动时运行。在该回调中,将 x 和 y 位置保存在单独的 cookie 中(为了简单起见)。
加载页面时,检查这些 cookie 并使用这些值来定位元素。
Seems you're using jQuery.
Include jquery.cookie.js. You can now set cookies like
$.cookie('position_x', 123)
and get them like$.cookie('position_x')
.The drag-and-drop library should have some callback that is run when you stop dragging. In that callback, save the x and y position away in separate cookies (to keep things simple).
When the page loads, check for those cookies and use the values to position the element.