jQuery:保存用户的选择,使下拉菜单在下次访问时可见或关闭
我的网站上有一个下拉菜单,我希望任何首次访问者都可以看到该下拉菜单,但如果用户关闭它,那么我希望同一用户下次访问时将其保持关闭状态。
我可以仅使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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).你需要使用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.