如何向拖放 div 添加 cookie

发布于 2024-10-23 14:36:55 字数 197 浏览 1 评论 0原文

您好,我在我的网站上添加了拖放功能请参阅此处,因为我是初学者我不知道如何向页面或 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 技术交流群。

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

发布评论

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

评论(1

时光无声 2024-10-30 14:36:55

看来你正在使用 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.

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