jQuery:保存用户的选择,使下拉菜单在下次访问时可见或关闭

发布于 2024-10-16 23:36:44 字数 149 浏览 1 评论 0原文

我的网站上有一个下拉菜单,我希望任何首次访问者都可以看到该下拉菜单,但如果用户关闭它,那么我希望同一用户下次访问时将其保持关闭状态。

我可以仅使用 jQuery 来完成此操作,还是需要将状态传递回服务器(通过 Ajax?)并使用服务器的会话功能?

谢谢

I have a drop-down on my site that I want visible to any first-time visitor, but if the user closes it, then I want to keep it closed on next visit for the same user.

Can I do this just with jQuery or do I need to pass the state back to the server (via Ajax?) and use server's session capabilities?

Thank you

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

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

发布评论

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

评论(2

雨夜星沙 2024-10-23 23:36:44

您可以使用 cookie(存储首选项),或者如果您的网站上有身份验证,您可以通过 AJAX POST 返回并更新您的用户首选项(这将具有不依赖于 cookie 过期的优点/正在删除)。

You can use cookies (to store the preference), or if you have authentication on your site, you could POST back via AJAX and update your users preferences (this will have the advantage of not relying on cookies expiring/being deleted).

葬心 2024-10-23 23:36:44

你需要使用cookies,它可以用普通的javascript来实现。这是学习处理 cookie 的一个很好的资源

You need to use cookies, it can be achieved with plain javascript. This is a nice resource for learning to deal with cookies.

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